Browse Source

feat(types): 新增平台开关

laiguoran 3 năm trước cách đây
mục cha
commit
2f286a145f
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      types/src/interface/platformSwitch.ts

+ 5 - 0
types/src/interface/platformSwitch.ts

@@ -0,0 +1,5 @@
+export interface IPlatformSwitch {// 项目功能开关
+    ID: string;
+    type: string;// 开关类型
+    enable: boolean;// 开关结果
+}