kyrie
    Preparing search index...

    Interface ASTNode

    Abstract Syntax Tree node for parsed values

    interface ASTNode {
        basic_type: string;
        deep_type: DeepType;
        elements?: ASTNode[];
        properties?: Record<string, ASTNode>;
        value?: unknown;
    }
    Index

    Properties

    basic_type: string
    deep_type: DeepType
    elements?: ASTNode[]
    properties?: Record<string, ASTNode>
    value?: unknown