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