Files
spark-store/src/vite-env.d.ts
2026-02-14 23:11:43 +08:00

17 lines
384 B
TypeScript

/* eslint-disable */
/// <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;
apm_store: any;
}
declare const __APP_VERSION__: string;