This commit is contained in:
jj
2023-04-07 13:58:18 +08:00
parent e5c46b4e8d
commit f3eb18dce2
86 changed files with 12242 additions and 0 deletions

7
env.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
/// <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;
}