"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
function Enum() {}
Enum.MODE = {
LIST: 'LIST',
VIEW: 'VIEW',
INSERT: 'INSERT',
UPDATE: 'UPDATE',
DELETE: 'DELETE'
};
var _default = Enum;
exports["default"] = _default;