Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/b418db410018c579d4cb231ce122f741e45fd99548be6094cae91e1f063385f3d367d60b51cbf79b96be25d73400159988c5ae6e8a82aa79f383936044cf3c
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

14 lines
783 B
Text

/**
* Normalize some key of the client config to an async provider.
* @internal
*
* @param configKey - the key to look up in config.
* @param canonicalEndpointParamKey - this is the name the EndpointRuleSet uses.
* it will most likely not contain the config
* value, but we use it as a fallback.
* @param config - container of the config values.
* @param isClientContextParam - whether this is a client context parameter.
*
* @returns async function that will resolve with the value.
*/
export declare const createConfigValueProvider: <Config extends Record<string, unknown>>(configKey: string, canonicalEndpointParamKey: string, config: Config, isClientContextParam?: boolean) => () => Promise<any>;