mirror of
https://github.com/Radarr/Radarr
synced 2026-03-05 03:54:32 +01:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
export interface QualityProfileFormatItem {
|
|
format: number;
|
|
name: string;
|
|
score: number;
|
|
}
|
|
|
|
interface CustomFormat {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
export default CustomFormat;
|