@tachybase/plugin-workflow-approval
Version:
Approval base in Workflow
16 lines (15 loc) • 437 B
TypeScript
interface ApprovalExecution {
id: number;
approval?: any;
snapshot?: any;
approvalExecution?: any;
workflow?: any;
status?: number;
updatedAt?: string;
user?: any;
job?: any;
execution?: any;
}
export declare const ProviderContextApprovalExecution: import("react").Provider<Partial<ApprovalExecution>>;
export declare function useContextApprovalExecution(): Partial<ApprovalExecution>;
export {};