12345678910111213141516 |
- import { NodeBuilder } from '../core/NodeBuilder';
- import { TempNode } from '../core/TempNode.js';
- export class NormalNode extends TempNode {
- constructor(scope?: string);
- scope: string;
- nodeType: string;
- generate(builder: NodeBuilder, output: string): string;
- copy(source: NormalNode): this;
- static LOCAL: string;
- static WORLD: string;
- static VIEW: string;
- }
|