@tachybase/module-workflow
Version:
A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.
37 lines (36 loc) • 855 B
TypeScript
export declare const EXECUTION_STATUS: {
QUEUEING: any;
STARTED: number;
RESOLVED: number;
FAILED: number;
ERROR: number;
ABORTED: number;
CANCELED: number;
REJECTED: number;
RETRY_NEEDED: number;
};
export declare const ExecutionStatusOptions: {
value: any;
label: string;
color: string;
icon: import("react/jsx-runtime").JSX.Element;
description: string;
}[];
export declare const ExecutionStatusOptionsMap: {};
export declare enum JOB_STATUS {
PENDING = 0,
RESOLVED = 1,
FAILED = -1,
ERROR = -2,
ABORTED = -3,
CANCELED = -4,
REJECTED = -5,
RETRY_NEEDED = -6
}
export declare const JobStatusOptions: {
value: JOB_STATUS;
label: string;
color: string;
icon: import("react/jsx-runtime").JSX.Element;
}[];
export declare const JobStatusOptionsMap: {};