1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 10:39:34 +00:00
Sonarr/frontend/typings/Globals.d.ts

14 lines
225 B
TypeScript
Raw Normal View History

2023-01-05 18:43:51 -08:00
declare module '*.module.css';
interface Window {
Sonarr: {
apiKey: string;
2024-11-23 20:20:36 -08:00
apiRoot: string;
instanceName: string;
theme: string;
urlBase: string;
version: string;
isProduction: boolean;
};
}