Variable typeOfValidatorsConst

typeOfValidators: {
    boolean: Validator<boolean, unknown>;
    func: Validator<Fun, unknown>;
    number: Validator<number, unknown>;
    object: Validator<object, unknown>;
    string: Validator<string, unknown>;
    symbol: Validator<symbol, unknown>;
} = ...

Validators asserting typeof input matches the expected value.

Note: bigint is omitted; not all supported platforms can use BigInt.