Radarr/frontend/src/typings/CustomFormat.ts

13 lines
185 B
TypeScript

export interface QualityProfileFormatItem {
format: number;
name: string;
score: number;
}
interface CustomFormat {
id: number;
name: string;
}
export default CustomFormat;