You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
700 B
21 lines
700 B
/*
|
|
* @Author: AaronWu 2463371514@qq.com
|
|
* @Date: 2025-03-31 15:12:17
|
|
* @LastEditors: AaronWu 2463371514@qq.com
|
|
* @LastEditTime: 2025-04-01 10:39:52
|
|
* @FilePath: /IssueSupportManage/src/shims-vue.d.ts
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module '*.md' {
|
|
import type { ComponentOptions } from 'vue';
|
|
const Component: ComponentOptions;
|
|
export default Component;
|
|
}
|
|
|
|
declare module 'nprogress';
|