From dfa2e66389df106ef38a4fd621f2e3e0cf91ace8 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期五, 08 三月 2024 15:28:48 +0800
Subject: [PATCH] feat:地图信息框点击
---
types/env.d.ts | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/types/env.d.ts b/types/env.d.ts
index 4af4bfd..2466134 100644
--- a/types/env.d.ts
+++ b/types/env.d.ts
@@ -1,8 +1,6 @@
-/// <reference types="vite/client" />
-
declare module "*.vue" {
- import type { DefineComponent } from "vue";
- // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
- const component: DefineComponent<{}, {}, any>;
- export default component;
+ import { defineComponent } from "vue";
+ const Component: ReturnType<typeof defineComponent>;
+ export default Component;
}
+
--
Gitblit v1.8.0