Files
story-studio/remotion/node_modules/@remotion/web-renderer/dist/drawing/get-background-fill.d.ts
2026-02-21 10:33:18 +01:00

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;