daggerai
Version:
A simple and powerful Typescript based agent framework to help businesses thrive in the AI Agent revolution.
18 lines • 397 B
TypeScript
import { Node } from './node';
export declare class Input extends Node {
type: string;
name: string;
description: string;
constructor(params: InputParams);
nodeOutput(): string;
}
export interface InputParams {
id?: string;
name: string;
description: string;
}
export interface InputValue {
name: string;
value: string;
}
//# sourceMappingURL=input.d.ts.map