Files
story-studio/remotion/node_modules/@remotion/media-utils/dist/create-smooth-svg-path.d.ts
2026-02-21 10:33:18 +01:00

8 lines
147 B
TypeScript

export type Point = {
x: number;
y: number;
};
export declare const createSmoothSvgPath: ({ points }: {
points: Point[];
}) => string;