first commiit

This commit is contained in:
2025-02-08 10:15:06 +08:00
parent 6815bd083b
commit 262bf41379
242 changed files with 19959 additions and 1 deletions

19
src/enums/SizeEnum.ts Normal file
View File

@@ -0,0 +1,19 @@
/**
* 布局大小枚举
*/
export const enum SizeEnum {
/**
* 默认
*/
DEFAULT = "default",
/**
* 大型
*/
LARGE = "large",
/**
* 小型
*/
SMALL = "small",
}