SwitchNode.d.ts 271 B

1234567891011121314
  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. copy( source: SwitchNode ): this;
  9. }