Type Utils
    Preparing search index...

    Type Alias ArraySchema

    ArraySchema: CallableFunction & {
        <T = any>(): FluentSchema<T[], Rules>;
        <T>(
            tree: StandardSchemaV1<T, T> | TypeGuard<T> | ValidatorMap<T>,
        ): FluentSchema<T[], Rules>;
        (tree: {}): FluentSchema<{}[], Rules>;
    }