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>
7 lines
352 B
Text
7 lines
352 B
Text
declare function ToObject<T extends object>(value: number): Number;
|
|
declare function ToObject<T extends object>(value: boolean): Boolean;
|
|
declare function ToObject<T extends object>(value: string): String;
|
|
declare function ToObject<T extends object>(value: bigint): BigInt;
|
|
declare function ToObject<T extends object>(value: T): T;
|
|
|
|
export = ToObject;
|