12 lines
362 B
JavaScript
12 lines
362 B
JavaScript
export const IActionDef = {
|
|
stm: {
|
|
settle: ['unsettled', 'settled'],
|
|
close: ['unsettled', 'closed'],
|
|
},
|
|
is: 'unsettled',
|
|
};
|
|
export const actions = ["count", "stat", "download", "select", "aggregate", "create", "remove", "update", "settle", "close", "refund", "refundFailure"];
|
|
export const actionDefDict = {
|
|
iState: IActionDef
|
|
};
|