Blame view

types/module.d.ts 438 Bytes
Vben authored
1
declare module '*.vue' {
2
3
  import { DefineComponent } from 'vue';
  const Component: DefineComponent<{}, {}, any>;
Vben authored
4
5
6
  export default Component;
}
vben authored
7
8
9
10
11
12
declare module 'ant-design-vue/es/locale/*' {
  import { Locale } from 'ant-design-vue/types/locale-provider';
  const locale: Locale & ReadonlyRecordable;
  export default locale as Locale & ReadonlyRecordable;
}
Vben authored
13
14
15
16
declare module 'virtual:*' {
  const result: any;
  export default result;
}