Files
Homarr/packages/integrations/src/interfaces/media-transcoding/queue.ts
2024-12-15 15:53:02 +01:00

17 lines
328 B
TypeScript

export interface TdarrQueue {
array: {
id: string;
healthCheck: string;
transcode: string;
filePath: string;
fileSize: number;
container: string;
codec: string;
resolution: string;
type: "transcode" | "health-check";
}[];
totalCount: number;
startIndex: number;
endIndex: number;
}