Files
2026-02-21 10:33:18 +01:00

6 lines
217 B
TypeScript

export type DrawFn = ({ computedStyle, contextToDraw, dimensions }: {
dimensions: DOMRect;
computedStyle: CSSStyleDeclaration;
contextToDraw: OffscreenCanvasRenderingContext2D;
}) => Promise<void> | void;