12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
export const IActionDef = {
|
|
stm: {
|
|
succeed: ['transferring', 'successful'],
|
|
fail: ['transferring', 'failed'],
|
|
},
|
|
is: 'transferring',
|
|
};
|
|
export const actions = ["count", "stat", "download", "select", "aggregate", "create", "remove", "update", "succeed", "fail"];
|
|
export const actionDefDict = {
|
|
iState: IActionDef
|
|
};
|