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