9 lines
358 B
TypeScript
9 lines
358 B
TypeScript
export declare const getBackgroundFill: ({ backgroundColor, backgroundImage, contextToDraw, boundingRect, offsetLeft, offsetTop, }: {
|
|
backgroundImage: string;
|
|
backgroundColor: string;
|
|
contextToDraw: OffscreenCanvasRenderingContext2D;
|
|
boundingRect: DOMRect;
|
|
offsetLeft: number;
|
|
offsetTop: number;
|
|
}) => string | CanvasGradient | null;
|