daggerai
Version:
A simple and powerful Typescript based agent framework to help businesses thrive in the AI Agent revolution.
13 lines • 329 B
TypeScript
import { Input } from './input';
import { Task } from './task';
export declare class Node {
id: string;
graphId: string;
type: string;
adjacentTo: string[];
adjancentFrom: string[];
output: string | null;
nodeOutput(): string;
}
export type NodeTypes = Task | Input;
//# sourceMappingURL=node.d.ts.map