refactor: ♻️ eslint 代码规范调整

This commit is contained in:
ray
2024-10-13 10:42:48 +08:00
parent 72eb87d005
commit a4ef6eb696
66 changed files with 376 additions and 376 deletions

5
src/types/env.d.ts vendored
View File

@@ -1,9 +1,8 @@
// https://cn.vitejs.dev/guide/env-and-mode
declare module "*.vue" {
import { DefineComponent } from "vue";
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
import type { DefineComponent } from "vue";
const component: DefineComponent<object, object, any>;
export default component;
}