UNPKG

hk-core-antdv

Version:

Based on Antd Vue3 custom components

47 lines (46 loc) 637 B
/** * 日期范围查询枚举 */ declare enum DateRange { /** * 所有 */ ALL = "ALL", /** * 今天, Today */ TD = "TD", /** * 昨天,Yesterday */ YD = "YD", /** * 本周, this week */ TW = "TW", /** * 上周, last week */ LW = "LW", /** * 本月, this month */ TM = "TM", /** * 上月, last month */ LM = "LM", /** * 本年, this year */ TY = "TY", /** * 去年, last year */ LY = "LY", /** * 自定义 */ CUSTOM = "CUSTOM" } export default DateRange;