mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 00:40:58 +01:00
17 lines
328 B
TypeScript
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;
|
|
}
|