Files
mes123456 7c16b279ae
Some checks failed
M6 deployable RC / quick (push) Has been cancelled
M6 deployable RC / chromium (push) Has been cancelled
M6 deployable RC / release (push) Has been cancelled
Advance M7 workflows and release operations
2026-08-15 17:43:53 -04:00

16 lines
365 B
TypeScript

export type ProgressPhase = "started" | "progress" | "completed" | "failed" | "cancelled";
export interface ProgressEvent {
requestId: string;
operation: string;
phase: ProgressPhase;
fraction?: number;
bytesRead?: number;
totalBytes?: number;
message?: string;
revision?: number;
errorCode?: string;
stage?: string;
cancellable?: boolean;
}