Vinyl
    Preparing search index...

    Variable typeOfValidatorsConst

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

    Validators asserting typeof input matches the expected value.

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

    Type declaration