UNPKG

rete

Version:
12 lines (11 loc) 287 B
import { Node } from './node'; import { Input } from './input'; export declare class Control { key: string; data: any; parent: Node | Input | null; constructor(key: string); getNode(): Node; getData(key: string): any; putData(key: string, data: any): void; }