rete
Version:
JavaScript framework
13 lines (12 loc) • 339 B
TypeScript
import { Engine } from './index';
import { Node } from '../core/data';
export declare type IOs = {
[key: string]: any;
};
export declare abstract class Component {
name: string;
data: {};
engine: Engine | null;
constructor(name: string);
abstract worker(node: Node, inputs: IOs, outputs: IOs, ...args: any): any;
}