23 lines
426 B
TypeScript
23 lines
426 B
TypeScript
/** 设备类型 */
|
|
export enum DeviceEnum {
|
|
Mobile,
|
|
Desktop
|
|
}
|
|
|
|
/** 布局模式 */
|
|
export enum LayoutModeEnum {
|
|
Left = "left",
|
|
Top = "top",
|
|
LeftTop = "left-top"
|
|
}
|
|
|
|
/** 侧边栏打开状态常量 */
|
|
export const SIDEBAR_OPENED = "opened"
|
|
|
|
/** 侧边栏关闭状态常量 */
|
|
export const SIDEBAR_CLOSED = "closed"
|
|
|
|
export type SidebarOpened = typeof SIDEBAR_OPENED
|
|
|
|
export type SidebarClosed = typeof SIDEBAR_CLOSED
|