tachybase_todo/packages/plugin-workflow/src/constants.ts

12 lines
157 B
TypeScript

export const EXECUTION_STATUS = {
STARTED: 0,
RESOLVED: 1,
REJECTED: -1
};
export const JOB_STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: -1
};