Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/8b88ee645d68d8ec35b95cd320f276b2b69a9ccbb37fb39c79c133c4b97036cc08fcc5daf009b49e91665c66c7d2d53845f678f5aff0e6f31cec39fe755d87
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

3 lines
307 B
Text

import { ChartCoordinate, Coordinate, ChartOffset, LayoutType } from '../types';
import { RadialCursorPoints } from './getRadialCursorPoints';
export declare function getCursorPoints(layout: LayoutType, activeCoordinate: ChartCoordinate, offset: ChartOffset): [Coordinate, Coordinate] | RadialCursorPoints;