14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
![]() |
/** 设备类型 */
|
||
|
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
|