routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { Point } from '../VSparkline.js';
/**
* From https://github.com/unsplash/react-trend/blob/master/src/helpers/DOM.helpers.js#L18
*/
export declare function genPath(points: Point[], radius: number, fill?: boolean, height?: number): string;
/**
* https://en.wikipedia.org/wiki/Collinearity
* x=(x1+x2)/2
* y=(y1+y2)/2
*/
export declare function checkCollinear(p0: Point, p1: Point, p2: Point): boolean;
export declare function getDistance(p1: Point, p2: Point): number;
export declare function moveTo(to: Point, from: Point, radius: number): {
x: any;
y: any;
};