1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-23 00:07:07 +00:00
Sonarr/frontend/typings/Globals.d.ts

14 lines
225 B
TypeScript
Raw Normal View History

2023-01-06 02:43:51 +00:00
declare module '*.module.css';
interface Window {
Sonarr: {
apiKey: string;
2024-11-24 04:20:36 +00:00
apiRoot: string;
instanceName: string;
theme: string;
urlBase: string;
version: string;
isProduction: boolean;
};
}