Skip to content

BooleanASTNode

原文链接

https://microsoft.github.io/monaco-editor/docs.html#interfaces/languages.json.BooleanASTNode.html

ts
interface BooleanASTNode {
    children?: ASTNode[];
    length: number;
    offset: number;
    parent?: ASTNode;
    type: "boolean";
    value: boolean;
}

children

length

  • 类型:number

offset

  • 类型:number

parent

type

  • 类型:"boolean"

value

  • 类型:boolean