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

10 lines
314 B
TypeScript

import type { BorderRadiusCorners } from './border-radius';
export declare const drawRoundedRectPath: ({ ctx, x, y, width, height, borderRadius, }: {
ctx: OffscreenCanvasRenderingContext2D;
x: number;
y: number;
width: number;
height: number;
borderRadius: BorderRadiusCorners;
}) => void;