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>
15 lines
661 B
Text
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;
|
|
}
|