14 lines
317 B
TypeScript
Raw Normal View History

2023-05-24 18:24:06 +08:00
/** 设备类型 */
export enum DeviceEnum {
Mobile,
Desktop
}
/** 侧边栏打开状态常量 */
export const SIDEBAR_OPENED = "opened"
/** 侧边栏关闭状态常量 */
export const SIDEBAR_CLOSED = "closed"
export type SidebarOpened = typeof SIDEBAR_OPENED
export type SidebarClosed = typeof SIDEBAR_CLOSED