Blame view

src/types/module.d.ts 596 Bytes
vben authored
1
declare module 'globby!/@/router/routes/modules/**/*.@(ts)';
vben authored
2
vben authored
3
declare module 'globby!/@/router/menus/modules/**/*.@(ts)';
vben authored
4
5
6
declare module 'globby?locale!/@/locales/lang/**/*.@(ts)';
vben authored
7
declare const React: string;
vben authored
8
9
10
11
12
13
14
15
16
17
18
19

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

declare module 'moment/locale/*' {
  import { LocaleSpecification } from 'moment';
  const locale: LocaleSpecification & ReadonlyRecordable;
  export default locale;
}