Rocky_Mountain_Vending/.pnpm-store/v10/files/13/204c06b25f2a790b6522b2008d41ad119337bc7e765e8826b40e89e60e33bc4db11056b06df42dae1b1622a6a77353841ce7e8a24fe2312e4a79d2716c03c8
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
407 B
Text

import { SelectorType } from "./types";
/**
* Returns boolean value true/false for string value "true"/"false",
* 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 booleanSelector: (obj: Record<string, string | undefined>, key: string, type: SelectorType) => boolean | undefined;