Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/3321fa8250493b8868ce394061e2480789a50184bd276710b3b89f802762c1022fcf936165e3398146e1ce38cfea32e513da65366165a2a4fb496935017d4e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

15 lines
497 B
Text

import { ChartCoordinate, Coordinate } from '../types';
export type RadialCursorPoints = {
points: [startPoint: Coordinate, endPoint: Coordinate];
cx?: number;
cy?: number;
radius?: number;
startAngle?: number;
endAngle?: number;
};
/**
* Only applicable for radial layouts
* @param {Object} activeCoordinate ChartCoordinate
* @returns {Object} RadialCursorPoints
*/
export declare function getRadialCursorPoints(activeCoordinate: ChartCoordinate): RadialCursorPoints;