UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

9 lines (8 loc) 406 B
export type WorkflowDirective = "use step" | "use workflow"; export declare function mayContainWorkflowDirective(source: string): boolean; export interface DirectiveStatementNode { readonly directive?: unknown; readonly expression?: unknown; readonly type?: unknown; } export declare function readWorkflowDirective(statement: DirectiveStatementNode | undefined): WorkflowDirective | undefined;