mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-03-04 16:05:48 +01:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
export default interface IProgressToken{
|
|
cancellationRequested: boolean;
|
|
increments: number;
|
|
incrementsCompleted: number;
|
|
progress: number;
|
|
lastUpdate: Date;
|
|
executionStarted: Date;
|
|
timeRemaining: Date;
|
|
state: number;
|
|
} |