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

10 lines
397 B
TypeScript

import type { BorderRadiusCorners } from './border-radius';
export declare const setOverflowHidden: ({ ctx, rect, borderRadius, overflowHidden, computedStyle, backgroundClip, }: {
ctx: OffscreenCanvasRenderingContext2D;
rect: DOMRect;
borderRadius: BorderRadiusCorners;
overflowHidden: boolean;
computedStyle: CSSStyleDeclaration;
backgroundClip: string;
}) => () => void;