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"; };