UNPKG

@remotion/paths

Version:

Utilities for working with SVG paths

13 lines (12 loc) 333 B
import type { Properties } from './types'; export declare const makeArc: ({ x0, y0, rx, ry, xAxisRotate, LargeArcFlag, SweepFlag, x1, y1, }: { x0: number; y0: number; rx: number; ry: number; xAxisRotate: number; LargeArcFlag: boolean; SweepFlag: boolean; x1: number; y1: number; }) => Properties;