refactor: ♻️ 增加侧边栏状态枚举类型

This commit is contained in:
cshaptx4869
2024-03-12 14:43:10 +08:00
parent 50b257f199
commit 19c8ddbe6f
2 changed files with 23 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
/**
* 侧边栏状态枚举
*/
export const enum SidebarStatusEnum {
/**
* 展开
*/
OPENED = "opened",
/**
* 关闭
*/
CLOSED = "closed",
}