8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
export type Point = {
|
|
x: number;
|
|
y: number;
|
|
};
|
|
export declare const createSmoothSvgPath: ({ points }: {
|
|
points: Point[];
|
|
}) => string;
|