Type Utils
    Preparing search index...

    Variable arrayConst

    array: {
        (): TypeGuard<any[]>;
        (rules: ArrayRule[]): TypeGuard<any[]>;
        <T>(rules: ArrayRule[], schema: TypeGuard<T>): TypeGuard<T[]>;
        <T>(schema: TypeGuard<T>): TypeGuard<T[]>;
        (tree: {}): TypeGuard<{}[]>;
        <T>(tree: ValidatorMap<T>): TypeGuard<T[]>;
        <T>(
            rules?: null | ArrayRule[] | TypeGuard<T>,
            schema?: TypeGuard<T>,
        ): TypeGuard<T[]>;
    } & { optional: OptionalizedArray } = ...