Radarr/frontend/src/typings/CustomFormat.ts
2023-05-06 21:33:19 -05:00

12 lines
185 B
TypeScript

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