Type Utils
    Preparing search index...

    Type Alias StringSchema

    StringSchema: CallableFunction & {
        (): FluentSchema<string, Rules>;
        (
            matches: RegExp,
        ): FluentSchema<
            string,
            Rules,
            ("email" | "max" | "min" | "nonEmpty" | "regex" | "url")[],
        >;
        <T extends string>(
            exact: T,
        ): FluentSchema<
            string,
            Rules,
            ("email" | "max" | "min" | "nonEmpty" | "regex" | "url")[],
        >;
    }