Represents a time estimate for the matching process.

export interface TimeEstimate {
startTime: number;
averageTimePerManga: number;
estimatedRemainingSeconds: number;
}
interface TimeEstimate {
    startTime: number;
    averageTimePerManga: number;
    estimatedRemainingSeconds: number;
}

Properties

startTime: number

The timestamp when the process started.

averageTimePerManga: number

The average time per manga in seconds.

estimatedRemainingSeconds: number

The estimated seconds remaining.