mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 15:53:23 +00:00
ec93c33aa9
(cherry picked from commit 67a1ecb0fea4e6c7dfdb68fbe3ef30d4c22398d8) Closes #5239
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
declare module '*.module.css';
|
|
|
|
interface Window {
|
|
Lidarr: {
|
|
apiKey: string;
|
|
instanceName: string;
|
|
theme: string;
|
|
urlBase: string;
|
|
version: string;
|
|
isProduction: boolean;
|
|
};
|
|
}
|