typings.d.ts 480 B

123456789101112131415161718
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-10 13:56:19
  4. * @LastEditTime: 2022-03-04 11:47:59
  5. * @LastEditors: Please set LastEditors
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: /KC-MiddlePlatform/src/components/topBar/typings.d.ts
  8. */
  9. declare namespace TopBar {
  10. export type Tab = {
  11. id: number;
  12. name: string;
  13. icon: string;
  14. url: string;
  15. path: string;
  16. };
  17. }