2
0

NormalNode.d.ts 244 B

123456789101112131415
  1. import { TempNode } from '../core/TempNode';
  2. export class NormalNode extends TempNode {
  3. constructor( scope?: string );
  4. scope: string;
  5. nodeType: string;
  6. copy( source: NormalNode ): this;
  7. static LOCAL: string;
  8. static WORLD: string;
  9. }