Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/76e79cd3724f98f9709c408380d175d6d02da2df01e9c0a34fd5046bfd76a400aa782e19d0d66d4d804b5747bcc1eed6f6f85102f5aeb0da9abf6421fb165e
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

23 lines
717 B
Text

declare const shimmer: {
(options: { logger?(msg: string): void }): void;
wrap<Nodule extends object, FieldName extends keyof Nodule>(
nodule: Nodule,
name: FieldName,
wrapper: (original: Nodule[FieldName]) => Nodule[FieldName],
): void;
massWrap<Nodule extends object, FieldName extends keyof Nodule>(
nodules: Nodule[],
names: FieldName[],
wrapper: (original: Nodule[FieldName]) => Nodule[FieldName],
): void;
unwrap<Nodule extends object>(
nodule: Nodule,
name: keyof Nodule,
): void;
massUnwrap<Nodule extends object>(
nodules: Nodule[],
names: Array<keyof Nodule>,
): void;
};
export = shimmer;