@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 594 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AffixType = exports.AffixScope = void 0;
var AffixScope;
(function (AffixScope) {
AffixScope[AffixScope["TitleAndAlias"] = 0] = "TitleAndAlias";
AffixScope[AffixScope["Alias"] = 1] = "Alias";
})(AffixScope = exports.AffixScope || (exports.AffixScope = {}));
var AffixType;
(function (AffixType) {
AffixType[AffixType["Fixed"] = 0] = "Fixed";
AffixType[AffixType["User"] = 1] = "User";
AffixType[AffixType["App"] = 2] = "App";
})(AffixType = exports.AffixType || (exports.AffixType = {}));