- Remove unused MULTIPLIER variable in Send.tsx - Remove unused Check import in Settings.tsx - Add vite-env.d.ts for ImportMeta.env types
11 lines
200 B
TypeScript
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;
|
|
}
|