Rocky_Mountain_Vending/.pnpm-store/v10/files/60/092b7b097f56aff85e40a9be1272702164d3f8273ed13a4415c0acc4ddac780c1952647c13947cab76d9915c569df83a477b76bf141d488422e74e936c6aad
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

10 lines
281 B
Text

export declare enum SelectorType {
ENV = "env",
CONFIG = "shared config entry",
}
export declare const stringUnionSelector: <U extends object, K extends keyof U>(
obj: Record<string, string | undefined>,
key: string,
union: U,
type: SelectorType
) => U[K] | undefined;