Type Utils
    Preparing search index...

    Type Alias RecordSchema

    RecordSchema: CallableFunction & {
        (): FluentSchema<Record<string, any>, Rules>;
        <K extends string | number | symbol, V>(
            keySchema: StandardSchemaV1<K, K> | TypeGuard<K>,
            valueSchema: StandardSchemaV1<V, V> | TypeGuard<V>,
        ): FluentSchema<Record<K, V>, Rules>;
        <K extends string | number | symbol>(
            keySchema: StandardSchemaV1<K, K> | TypeGuard<K>,
        ): FluentSchema<Record<K, any>, Rules>;
    }