Initial commit

This commit is contained in:
anghunk
2026-01-14 10:02:58 +08:00
commit 8f2fde5188
86 changed files with 74925 additions and 0 deletions

21
widget/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,21 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare module '*?inline' {
const content: string;
export default content;
}
interface ImportMetaEnv {
readonly DEV: boolean;
readonly PROD: boolean;
readonly MODE: string;
readonly BASE_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}