15 lines
424 B
JavaScript
15 lines
424 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ActionDefDict = exports.actions = void 0;
|
|
var IActionDef = {
|
|
stm: {
|
|
apply: ['active', 'applied'],
|
|
abandon: ['active', 'abandoned']
|
|
},
|
|
is: 'active'
|
|
};
|
|
exports.actions = ["count", "stat", "download", "select", "create", "remove", "update", "apply", "abandon"];
|
|
exports.ActionDefDict = {
|
|
iState: IActionDef
|
|
};
|