PropertyNode.d.ts 232 B

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