12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
const IActionDef = {
|
|
stm: {
|
|
success: [['wait', 'fail'], 'success'],
|
|
fail: [['wait', 'success'], 'fail']
|
|
},
|
|
is: 'wait',
|
|
};
|
|
export const actions = ["count", "stat", "download", "select", "aggregate", "create", "remove", "update", "success", "fail", "publish"];
|
|
export const ActionDefDict = {
|
|
iState: IActionDef
|
|
};
|