@eko-ai/eko
Version:
Empowering language to transform human words into action.
8 lines • 360 B
TypeScript
import { WorkflowLog } from "../types";
export default interface WorkflowLogsService {
createWorkflowLog(workflowLog: WorkflowLog): Promise<void>;
updateWorkflowLog(workflowLog: WorkflowLog): Promise<void>;
loadWorkflowLog(id: string): Promise<WorkflowLog>;
}
export type { WorkflowLogsService };
//# sourceMappingURL=workflow-logs-service.d.ts.map