Rocky_Mountain_Vending/.pnpm-store/v10/files/56/fc5f4ff3521d984cf6510341994170ce9d7c2d9e24f83aecc37f6ddae584290e8a1dee4c59abd5c68226674f61dec1f45372df26316e2b45a3d9862c97b941
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

7 lines
277 B
Text

export type GetAttrValue = string | boolean | {
[key: string]: GetAttrValue;
} | Array<GetAttrValue>;
/**
* Returns value corresponding to pathing string for an array or object.
*/
export declare const getAttr: (value: GetAttrValue, path: string) => GetAttrValue;