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>
10 lines
402 B
Text
10 lines
402 B
Text
import type { 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;
|