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