@vinejs/vine - v4.0.0-next.1
    Preparing search index...

    Variable IS_OF_TYPEConst

    IS_OF_TYPE: typeof IS_OF_TYPE = ...

    The symbol to check if a value is of the given schema type. Used by union schemas to determine which schema variant matches a value.

    class StringSchema {
    [IS_OF_TYPE](value: unknown) {
    return typeof value === 'string'
    }
    }