@tachybase/module-workflow
Version:
A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.
23 lines (22 loc) • 594 B
TypeScript
export declare const EXECUTION_STATUS: {
readonly QUEUEING: any;
readonly STARTED: 0;
readonly RESOLVED: 1;
readonly FAILED: -1;
readonly ERROR: -2;
readonly ABORTED: -3;
readonly CANCELED: -4;
readonly REJECTED: -5;
readonly RETRY_NEEDED: -6;
};
export declare const JOB_STATUS: {
readonly PENDING: 0;
readonly RESOLVED: 1;
readonly FAILED: -1;
readonly ERROR: -2;
readonly ABORTED: -3;
readonly CANCELED: -4;
readonly REJECTED: -5;
readonly RETRY_NEEDED: -6;
};
export declare const COLLECTION_WORKFLOWS_NAME = "workflows";