mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
import { RadarrProfile, RadarrRootFolder } from '../../api/radarr';
|
|
|
|
export interface ServiceCommonServer {
|
|
id: number;
|
|
name: string;
|
|
is4k: boolean;
|
|
isDefault: boolean;
|
|
activeProfileId: number;
|
|
activeDirectory: string;
|
|
activeAnimeProfileId?: number;
|
|
activeAnimeDirectory?: string;
|
|
}
|
|
|
|
export interface ServiceCommonServerWithDetails {
|
|
server: ServiceCommonServer;
|
|
profiles: RadarrProfile[];
|
|
rootFolders: Partial<RadarrRootFolder>[];
|
|
}
|