synor/apps/desktop-wallet/src/vite-env.d.ts
Gulshan Yadav cca23a4019 fix: resolve TypeScript errors in desktop wallet
- Remove unused MULTIPLIER variable in Send.tsx
- Remove unused Check import in Settings.tsx
- Add vite-env.d.ts for ImportMeta.env types
2026-02-02 02:26:08 +05:30

11 lines
200 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly PROD: boolean;
readonly DEV: boolean;
readonly MODE: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}