SwitchNode.d.ts 328 B

12345678910111213
  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. }