合同小程序后台管理系统前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
438 B

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