mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
14 lines
225 B
TypeScript
14 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;
|
|
};
|
|
}
|