isguard-ts
    Preparing search index...

    Type Alias IntersectionTypeGuard<T>

    IntersectionTypeGuard: TypeGuard<TupleToIntersection<T>> & {
        guards: TypeGuardTemplate<T>;
    }

    A TypeGuard for intersection types (A & B & C).

    Returned by isIntersection and TypeGuard.and.

    Type Parameters

    • T extends readonly unknown[]

      Array of types in the intersection

    Type Declaration