Rocky_Mountain_Vending/.pnpm-store/v10/files/c4/4d9388ed1c7275766b28e2e92804f64cbeb71c25f5331286b14df7a0c3761a917a0441b671267a1a10cc662dc21d11e845838c3b06e9def1d34336b6b40d79
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
244 B
Text

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