소스 검색

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;// 开关结果
+}