Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/826b42ad6db549e6a29136e1b9d8f2cd6ba765808ca66f6d3508bcd1d794ba046cf633e6808d4a67c9283a26fc138c2c8001cdd00ce490d84d50139c222164
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

5 lines
215 B
Text

export type IfOverflow = 'hidden' | 'visible' | 'discard' | 'extendDomain';
export declare const ifOverflowMatches: (props: {
alwaysShow?: boolean;
ifOverflow?: IfOverflow;
}, value: IfOverflow) => boolean;