SwitchNode.d.ts 220 B

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