Add Chromium-only Blender WebEngine parity work
This commit is contained in:
11
web/protocol/progress.ts
Normal file
11
web/protocol/progress.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export type ProgressPhase = "started" | "progress" | "completed" | "failed" | "cancelled";
|
||||
|
||||
export interface ProgressEvent {
|
||||
requestId: string;
|
||||
operation: string;
|
||||
phase: ProgressPhase;
|
||||
fraction?: number;
|
||||
message?: string;
|
||||
revision?: number;
|
||||
errorCode?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user