ui-framework-jps
Version:
A simple UI framework for state management and UI components
20 lines • 962 B
JavaScript
export var Priority;
(function (Priority) {
Priority[Priority["Normal"] = 0] = "Normal";
Priority[Priority["High"] = 1] = "High";
Priority[Priority["Urgent"] = 2] = "Urgent";
})(Priority || (Priority = {}));
export var InviteType;
(function (InviteType) {
InviteType[InviteType["ChatRoom"] = 0] = "ChatRoom";
InviteType[InviteType["CustomType1"] = 1] = "CustomType1";
InviteType[InviteType["CustomType2"] = 2] = "CustomType2";
InviteType[InviteType["CustomType3"] = 3] = "CustomType3";
InviteType[InviteType["CustomType4"] = 4] = "CustomType4";
InviteType[InviteType["CustomType5"] = 5] = "CustomType5";
InviteType[InviteType["CustomType6"] = 6] = "CustomType6";
InviteType[InviteType["CustomType7"] = 7] = "CustomType7";
InviteType[InviteType["CustomType8"] = 8] = "CustomType8";
InviteType[InviteType["CustomType9"] = 9] = "CustomType9";
})(InviteType || (InviteType = {}));
//# sourceMappingURL=Types.js.map