LightNode.d.ts 270 B

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