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