UNPKG

crewai-ts

Version:

TypeScript port of crewAI for agent-based workflows

14 lines 314 B
export interface FlowStateOptions { id?: string; } export declare class FlowState { /** * Unique identifier for the flow state */ id: string; /** * Creates a new FlowState with a unique ID */ constructor(options?: FlowStateOptions); } //# sourceMappingURL=FlowState.d.ts.map