mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 12:36:50 -07:00
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;
|
|
};
|
|
}
|