فهرست منبع

feat(types): 新增平台开关

laiguoran 3 سال پیش
والد
کامیت
2f286a145f
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  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;// 开关结果
+}