application.ts 464 B

1234567891011121314151617181920212223
  1. export interface ApplicationInfo {
  2. name: string;
  3. pinyin: string;
  4. en: string;
  5. icon: string;
  6. key: string;
  7. // 是否允许多开
  8. allowMulti: boolean;
  9. minHeight: number;
  10. minWidth: number;
  11. description: string;
  12. component?: any;
  13. componentPath: string;
  14. }
  15. export interface RunApplicationInfo {
  16. id: string;
  17. key: string;
  18. show: boolean;
  19. full: boolean;
  20. index: number;// 窗口层级
  21. showTitle: string;
  22. }