UNPKG

nsn-enum

Version:

NSN枚举组件

23 lines (20 loc) 576 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Operation = void 0; /** 数据操作类型 */ var Operation; exports.Operation = Operation; (function (Operation) { Operation["ADD"] = "add"; Operation["NEW"] = "new"; Operation["CREATE"] = "create"; Operation["SAVE"] = "save"; Operation["REMOVE"] = "remove"; Operation["DELETE"] = "delete"; Operation["EDIT"] = "edit"; Operation["UPDATE"] = "update"; Operation["INFO"] = "info"; Operation["DETAIL"] = "detail"; })(Operation || (exports.Operation = Operation = {}));