mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-29 18:48:32 +08:00
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
const component: DefineComponent<any, any, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module '*.svg';
|