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>
21 lines
725 B
Text
21 lines
725 B
Text
import { Logger, Provider, UserAgent } from "@smithy/types";
|
|
export declare const DEFAULT_UA_APP_ID: undefined;
|
|
export interface UserAgentInputConfig {
|
|
customUserAgent?: string | UserAgent;
|
|
userAgentAppId?: string | undefined | Provider<string | undefined>;
|
|
}
|
|
interface PreviouslyResolved {
|
|
defaultUserAgentProvider: Provider<UserAgent>;
|
|
runtime: string;
|
|
logger?: Logger;
|
|
}
|
|
export interface UserAgentResolvedConfig {
|
|
defaultUserAgentProvider: Provider<UserAgent>;
|
|
customUserAgent?: UserAgent;
|
|
runtime: string;
|
|
userAgentAppId: Provider<string | undefined>;
|
|
}
|
|
export declare function resolveUserAgentConfig<T>(
|
|
input: T & PreviouslyResolved & UserAgentInputConfig
|
|
): T & UserAgentResolvedConfig;
|
|
export {};
|