Skip to content
Sheetwrite

Sheetwrite / Documentation

WorkerAcknowledgement@sheetwrite/core/worker

Lifecycle and frame acknowledgements posted back to the sender.

Lifecycle and frame acknowledgements posted back to the sender.

Variants 3

{ type: "ready" }
{ type: "fatal"; reason: string }
{ type: "painted" }

Declaration

View full TypeScript declaration
export type WorkerAcknowledgement =
| {
type: "ready";
}
| {
type: "fatal";
reason: string;
}
| {
type: "painted";
};