Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/fd1fc0d0d866ca319cdc6cd353f601888b92b2da313a9f4b4b8c1235cd126c96d58338ae56fd1c5bb7fb5b01bb6f0ed7fca8fd36ce694f6b181cc52c61e811
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

15 lines
671 B
Text

import { HttpAuthSchemeId, Identity, IdentityProvider, IdentityProviderConfig } from "@smithy/types";
/**
* Default implementation of IdentityProviderConfig
* @internal
*/
export declare class DefaultIdentityProviderConfig implements IdentityProviderConfig {
private authSchemes;
/**
* Creates an IdentityProviderConfig with a record of scheme IDs to identity providers.
*
* @param config scheme IDs and identity providers to configure
*/
constructor(config: Record<HttpAuthSchemeId, IdentityProvider<Identity> | undefined>);
getIdentityProvider(schemeId: HttpAuthSchemeId): IdentityProvider<Identity> | undefined;
}