Tranga-Website/Website/modules/interfaces/IProgressToken.tsx

10 lines
251 B
TypeScript
Raw Normal View History

2024-10-18 19:45:04 +02:00
export default interface IProgressToken{
cancellationRequested: boolean;
increments: number;
incrementsCompleted: number;
progress: number;
lastUpdate: Date;
executionStarted: Date;
timeRemaining: Date;
state: number;
}