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

    Type Alias CompilerNodes

    CompilerNodes:
        | LiteralNode & { subtype: string }
        | ObjectNode
        | ArrayNode
        | UnionNode
        | RecordNode
        | TupleNode

    Compiler nodes emitted by Vine during schema compilation. These nodes represent the structure of validation schemas and are used by the compiler to generate optimized validation functions.

    const node: CompilerNodes = {
    type: 'literal',
    subtype: 'string',
    propertyName: 'name',
    validations: []
    }