mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-10 23:29:53 +02:00
14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
declare module '*.module.css';
|
|
|
|
interface Window {
|
|
Sonarr: {
|
|
apiKey: string;
|
|
apiRoot: string;
|
|
instanceName: string;
|
|
theme: string;
|
|
urlBase: string;
|
|
version: string;
|
|
isProduction: boolean;
|
|
};
|
|
}
|