utility-pickle - v0.1.0
    Preparing search index...

    Type Alias GuardFuncCollection<T>

    GuardFuncCollection: { [K in keyof T]: GuardFunc<T[K]> }

    Represents a tuple of guard functions, where each function validates the corresponding element in a tuple T.

    Used for guarding structured arrays (tuples) with fixed element types.

    Type Parameters

    • T extends unknown[]

      A tuple type to be guarded, e.g., [string, number].