ant-design-vue/site/typings.d.ts
2023-08-30 22:48:17 +08:00

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';