mirror of
https://github.com/Readarr/Readarr
synced 2025-12-10 02:15:16 +01:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
declare module '*.module.css';
|
|
|
|
interface Window {
|
|
Readarr: {
|
|
apiKey: string;
|
|
instanceName: string;
|
|
theme: string;
|
|
urlBase: string;
|
|
version: string;
|
|
isProduction: boolean;
|
|
};
|
|
}
|