Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/85d40badb24bfea920e90a47e0f840240ca6b6d756a7025752ef2ac5443e81feb03f2a0969a34de3ef3cf30734cfa1f4de536b7a94e0f77c60d523b2c21c00
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
661 B
Text

import type { 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;
}