PropertyNode.d.ts 231 B

123456789101112
  1. import { InputNode } from '../core/InputNode';
  2. export class PropertyNode extends InputNode {
  3. constructor( object: object, property: string, type: string );
  4. object: object;
  5. property: string;
  6. nodeType: string;
  7. value: any;
  8. }