Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/3dbfe1b64615b089f4deef0f290913a314355544f623cb0da6a361dba6fb43ae0b88925a3a0d64b636ef9b32c2917f128639a0733ff7f66a3df42fe3668c6a
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

4 lines
149 B
Text

export type PercentOfViewType = {
measure: (n: number) => number;
};
export declare function PercentOfView(viewSize: number): PercentOfViewType;