From b5c1614fe473330ceca8b7cff0f1802e19bd5039 Mon Sep 17 00:00:00 2001
From: Sanakey <714737083@qq.com>
Date: 星期一, 30 九月 2024 13:39:08 +0800
Subject: [PATCH] feat:添加部分线索接口,完善客户相关页面

---
 types/module.d.ts |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/types/module.d.ts b/types/module.d.ts
index 8db5156..61a0c34 100644
--- a/types/module.d.ts
+++ b/types/module.d.ts
@@ -1,19 +1,15 @@
 declare module '*.vue' {
   import { DefineComponent } from 'vue';
+
   const Component: DefineComponent<{}, {}, any>;
   export default Component;
 }
 
 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/dist/locale/*' {
-  import { LocaleSpecification } from 'moment';
-  const locale: LocaleSpecification & ReadonlyRecordable;
-  export default locale;
 }
 
 declare module 'virtual:*' {

--
Gitblit v1.8.0