Rocky_Mountain_Vending/.pnpm-store/v10/files/1f/42874cecde90df6f373fda5a731f89e8c8501f04efb51d13da5bf54693f5366ba7870a3f0d3deaa8daf9eb666e0219a4d002f1934e462ec79e06de6e72256a
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

10 lines
377 B
Text

import { ChartCoordinate, ChartOffset, LayoutType } from '../types';
export type CursorRectangle = {
stroke: string;
fill: string;
x: number;
y: number;
width: number;
height: number;
};
export declare function getCursorRectangle(layout: LayoutType, activeCoordinate: ChartCoordinate, offset: ChartOffset, tooltipAxisBandSize: number): CursorRectangle;