module.d.ts 540 字节
Newer Older
V
Vben 已提交
1 2 3 4 5 6
declare module '*.vue' {
  import { defineComponent } from 'vue';
  const Component: ReturnType<typeof defineComponent>;
  export default Component;
}

V
vben 已提交
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;
}

13
declare module 'moment/dist/locale/*' {
V
vben 已提交
14 15 16 17
  import { LocaleSpecification } from 'moment';
  const locale: LocaleSpecification & ReadonlyRecordable;
  export default locale;
}