Rocky_Mountain_Vending/.pnpm-store/v10/files/43/0a01a1de4dfcc2ec22a7b8e525cee74ae8e0f20d6aa7fd1058199507c7b5ad0c96f4b4c6ece2302fd5bca81aa77d8b1aa64e2774189fad27ef778ae24ccf52
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

9 lines
375 B
Text

import { SelectorType } from "./types";
/**
* Returns number value for string value, if the string is defined in obj[key].
* Returns undefined, if obj[key] is not defined.
* Throws error for all other cases.
*
* @internal
*/
export declare const numberSelector: (obj: Record<string, string | undefined>, key: string, type: SelectorType) => number | undefined;