Rocky_Mountain_Vending/.pnpm-store/v10/files/2e/a37288f923f731f077350f1101111c0502ef38fcc62058dd2599bc61f27a4599897e1c10426945fb456b915cf4ede4219d0b6a9f5b053fa6660949231bfbd2
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
693 B
Text

import type { UserAgent } from "@smithy/types";
import type { DefaultUserAgentOptions } from "./configurations";
import type { PreviouslyResolved } from "./index";
/**
* This is an alternative to the default user agent provider that uses the bowser
* library to parse the user agent string.
*
* Use this with your client's `defaultUserAgentProvider` constructor object field
* to use the legacy behavior.
*
* @deprecated use the default provider unless you need the older UA-parsing functionality.
* @public
*/
export declare const createUserAgentStringParsingProvider: ({ serviceId, clientVersion }: DefaultUserAgentOptions) => ((config?: PreviouslyResolved) => Promise<UserAgent>);