probe-web / @probe-web/client / wire / ProgressEvent
Type Alias: ProgressEvent
ts
type ProgressEvent =
| {
FlashLayoutReady: {
flash_layout: FlashLayout[];
};
}
| {
AddProgressBar: {
operation: Operation;
total: bigint | null;
};
}
| {
Started: Operation;
}
| {
Progress: {
operation: Operation;
size: bigint;
};
}
| {
Failed: Operation;
}
| {
Finished: Operation;
}
| {
DiagnosticMessage: {
message: string;
};
};Defined in: wire.ts:590
probe-rs-rpc ProgressEvent: flash/progress topic.