Rocky_Mountain_Vending/.pnpm-store/v10/files/35/f7719d979463f15b942d3ca9a022ce071622f482cbf27385a20b5ad92e5b795918216f3986af1d9456c87d584fd482798ca625808ed258772a6b9e1a4ddf75
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

8 lines
559 B
Text

import { Size, CartesianViewBox, CartesianTickItem } from './types';
export declare function getAngledTickWidth(contentSize: Size, unitSize: Size, angle: number): number;
export declare function getTickBoundaries(viewBox: CartesianViewBox, sign: number, sizeKey: string): {
start: number;
end: number;
};
export declare function isVisible(sign: number, tickPosition: number, getSize: () => number, start: number, end: number): boolean;
export declare function getNumberIntervalTicks(ticks: CartesianTickItem[], interval: number): CartesianTickItem[];