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