convnum
    Preparing search index...

    Variable typeValidatorsConst

    typeValidators: Record<NumType, (str: string) => boolean> = ...

    Mapping of type names to their validation functions that check if a string matches a specific type. Each function takes a string and returns true if it's a valid representation of that type. Used internally by getTypes() and hasType() but exported for direct access to specific validators.

    typeValidators.decimal('123') // returns true
    typeValidators.decimal('abc') // returns false
    typeValidators.roman('IV') // returns true
    typeValidators.roman('invalid') // returns false
    typeValidators.latin_letter('A') // returns true
    typeValidators.latin_letter('AB') // returns false