NormalNode.d.ts 379 B

12345678910111213141516
  1. import { NodeBuilder } from '../core/NodeBuilder';
  2. import { TempNode } from '../core/TempNode.js';
  3. export class NormalNode extends TempNode {
  4. constructor(scope?: string);
  5. scope: string;
  6. nodeType: string;
  7. generate(builder: NodeBuilder, output: string): string;
  8. copy(source: NormalNode): this;
  9. static LOCAL: string;
  10. static WORLD: string;
  11. static VIEW: string;
  12. }