Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/6933f4335dd2548d8228acf049ea7e569327c9c263f91b9aa27432c3abe8a7ca5f42a30502df0cf7a391e2c96d37979990a280ffb42232c88487bc9d91be41
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
268 B
Text

export declare function isBlockedPage(page: string): boolean;
type AnyFunc<T> = (this: T, ...args: any) => any;
export declare function debounce<T, F extends AnyFunc<T>>(fn: F, ms: number, maxWait?: number): (this: T, ...passedArgs: Parameters<F>) => void;
export {};