1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-22 16:02:43 +00:00
Radarr/frontend/typings/Globals.d.ts
Bogdan 617b9c5d35 Console warnings for missing translations on development builds
(cherry picked from commit 67a1ecb0fea4e6c7dfdb68fbe3ef30d4c22398d8)

Closes #10669
2024-12-01 18:54:53 +02:00

12 lines
204 B
TypeScript

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