Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/1668a8e8c76839746aaaa62e39eda2d71acca803a3647d35e2642874b6b3729782f323cb04670e414ba6394d7d31315496c2ab40b091806adbc33dea7b3de6
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
386 B
Text

import { CSSProperties } from 'react';
import { Size } from './types';
export declare const getStyleString: (style: CSSProperties) => string;
export declare const getStringSize: (text: string | number, style?: CSSProperties) => Size;
interface ContainerOffset {
top: number;
left: number;
}
export declare const getOffset: (rect: ContainerOffset) => ContainerOffset;
export {};