Rocky_Mountain_Vending/.pnpm-store/v10/files/de/d445855c684058614bfc0cf485d194e4c81eaf174c41048d5193a6b1b1602e054858fe426173ccdf6a558648ccaee19bc0867b38139fb7ec4a7e3454373530
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

22 lines
747 B
Text

import { Provider, UserAgent } from "@smithy/types";
import { DefaultUserAgentOptions } from "./configurations";
export { createUserAgentStringParsingProvider } from "./createUserAgentStringParsingProvider";
export interface PreviouslyResolved {
userAgentAppId: Provider<string | undefined>;
}
export declare const createDefaultUserAgentProvider: ({
serviceId,
clientVersion,
}: DefaultUserAgentOptions) => (
config?: PreviouslyResolved
) => Promise<UserAgent>;
export declare const fallback: {
os(ua: string): string | undefined;
browser(ua: string): string | undefined;
};
export declare const defaultUserAgent: ({
serviceId,
clientVersion,
}: DefaultUserAgentOptions) => (
config?: PreviouslyResolved
) => Promise<UserAgent>;