bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
18 lines • 801 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageStatus = exports.FormType = void 0;
var FormType;
(function (FormType) {
FormType[FormType["Insert"] = 0] = "Insert";
FormType[FormType["Update"] = 1] = "Update";
FormType[FormType["Select"] = 2] = "Select";
})(FormType = exports.FormType || (exports.FormType = {}));
var PageStatus;
(function (PageStatus) {
PageStatus[PageStatus["Init"] = 0] = "Init";
PageStatus[PageStatus["Searching"] = 1] = "Searching";
PageStatus[PageStatus["FinishSearch"] = 2] = "FinishSearch";
PageStatus[PageStatus["Error"] = 3] = "Error";
PageStatus[PageStatus["ReadOnly"] = 4] = "ReadOnly";
})(PageStatus = exports.PageStatus || (exports.PageStatus = {}));
//# sourceMappingURL=global.constants.js.map