wetrade-design
Version:
一款多语言支持Vue3的UI框架
20 lines (19 loc) • 756 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RegionTypeEnum = exports.QuotationColor = void 0;
// 市场枚举
var RegionTypeEnum;
exports.RegionTypeEnum = RegionTypeEnum;
(function (RegionTypeEnum) {
RegionTypeEnum[RegionTypeEnum["HK"] = 0] = "HK";
RegionTypeEnum[RegionTypeEnum["US"] = 1] = "US";
})(RegionTypeEnum || (exports.RegionTypeEnum = RegionTypeEnum = {}));
// 涨跌色枚举
var QuotationColor;
exports.QuotationColor = QuotationColor;
(function (QuotationColor) {
QuotationColor[QuotationColor["RED_UP_GREEN_DOWN"] = 0] = "RED_UP_GREEN_DOWN";
QuotationColor[QuotationColor["GREEN_UP_RED_DOWN"] = 1] = "GREEN_UP_RED_DOWN";
})(QuotationColor || (exports.QuotationColor = QuotationColor = {}));