Rocky_Mountain_Vending/.pnpm-store/v10/files/af/db58f4adf44cf7f8f5e85d3f730e5f4f6cf93f093713cc475523fe6f1b9eea7f2be9a17797c67101cbb6acc54398938f37150d4c26c05a7ce48a478c6145b2
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
240 B
Text

import type { Provider } from "@smithy/types";
/**
* @internal
*/
export type FromStaticConfig<T> = T | (() => T) | Provider<T>;
/**
* @internal
*/
export declare const fromStatic: <T>(defaultValue: FromStaticConfig<T>) => Provider<T>;