Radarr/frontend/typings/Globals.d.ts
Mark McDowall b91517afd5 Add React Query
(cherry picked from commit 4491df3ae7530f2167beebc3548dd01fd2cc1a12)
2025-04-15 22:30:42 +03:00

13 lines
225 B
TypeScript

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