mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 14:51:17 +00:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
declare module '*.module.css';
|
|
|
|
interface Window {
|
|
Radarr: {
|
|
apiKey: string;
|
|
instanceName: string;
|
|
theme: string;
|
|
urlBase: string;
|
|
version: string;
|
|
isProduction: boolean;
|
|
};
|
|
}
|