Initial commit

This commit is contained in:
Yinan Qin
2026-01-17 00:15:37 +08:00
committed by GitHub
commit 2250f89266
38 changed files with 1241 additions and 0 deletions

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

@@ -0,0 +1,12 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
interface Window {
// expose in the `electron/preload/index.ts`
ipcRenderer: import('electron').IpcRenderer
}