1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-09-16 09:26:36 +02:00
Files
Sonarr/frontend/typings/Globals.d.ts
2024-11-26 17:37:21 -08:00

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;
};
}