isguard-ts
    Preparing search index...

    Type Alias TypeGuardTemplate<T, _U>

    TypeGuardTemplate: { -readonly [K in keyof T]-?: TypeGuard<T[K]> }

    A template for creating type guards for objects or tuples. Each property corresponds to a type guard for that property or index.

    Type Parameters

    • in out T

      The object or tuple to guard

    • in out _U extends ExactEqual<T> = ExactEqual<T>