LightNode.d.ts 329 B

12345678910111213141516
  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. generate( builder: NodeBuilder, output: string ): string;
  8. copy( source: LightNode ): this;
  9. static TOTAL: string;
  10. }