Skip to content

NullASTNode

原文链接

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

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

children

length

  • 类型:number

offset

  • 类型:number

parent

type

  • 类型:'null'

value

  • 类型:null