nsn-enum
Version:
NSN枚举组件
13 lines (10 loc) • 340 B
JavaScript
/** 指标导向 枚举 */
export var IndicatorsGuidanceEnum;
(function (IndicatorsGuidanceEnum) {
/** 上升 */
IndicatorsGuidanceEnum["RISING"] = "1";
/** 下降 */
IndicatorsGuidanceEnum["DECLINE"] = "2";
/** 持平 */
IndicatorsGuidanceEnum["STAY_FLAT"] = "3";
})(IndicatorsGuidanceEnum || (IndicatorsGuidanceEnum = {}));