SwitchNode.d.ts 330 B

123456789101112131415
  1. import { Node } from '../core/Node';
  2. import { NodeBuilder } from '../core/NodeBuilder';
  3. export class SwitchNode extends Node {
  4. constructor( node: Node, components?: string );
  5. node: Node;
  6. components: string;
  7. nodeType: string;
  8. generate( builder: NodeBuilder, output: string ): string;
  9. copy( source: SwitchNode ): this;
  10. }