Readarr/frontend/typings/Globals.d.ts
Bogdan a362dab503 Console warnings for missing translations on development builds
(cherry picked from commit 67a1ecb0fea4e6c7dfdb68fbe3ef30d4c22398d8)

Closes #3863
2025-04-08 21:53:35 +03:00

12 lines
205 B
TypeScript

declare module '*.module.css';
interface Window {
Readarr: {
apiKey: string;
instanceName: string;
theme: string;
urlBase: string;
version: string;
isProduction: boolean;
};
}