@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
5 lines • 585 B
TypeScript
import { RunState, Interruption, RunConfig } from './types';
export declare function approve<Ctx>(state: RunState<Ctx>, interruption: Interruption<Ctx>, additionalContext?: Record<string, any>, config?: RunConfig<Ctx>): Promise<RunState<Ctx>>;
export declare function reject<Ctx>(state: RunState<Ctx>, interruption: Interruption<Ctx>, additionalContext?: Record<string, any>, config?: RunConfig<Ctx>): Promise<RunState<Ctx>>;
export declare function loadApprovalsIntoState<Ctx>(state: RunState<Ctx>, config?: RunConfig<Ctx>): Promise<RunState<Ctx>>;
//# sourceMappingURL=state.d.ts.map