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>
19 lines
749 B
Text
19 lines
749 B
Text
import { Pluggable } from "@smithy/types";
|
|
import {
|
|
DefaultCredentialProvider,
|
|
RoleAssumer,
|
|
RoleAssumerWithWebIdentity,
|
|
STSRoleAssumerOptions,
|
|
} from "./defaultStsRoleAssumers";
|
|
import { ServiceInputTypes, ServiceOutputTypes } from "./STSClient";
|
|
export declare const getDefaultRoleAssumer: (
|
|
stsOptions?: STSRoleAssumerOptions,
|
|
stsPlugins?: Pluggable<ServiceInputTypes, ServiceOutputTypes>[]
|
|
) => RoleAssumer;
|
|
export declare const getDefaultRoleAssumerWithWebIdentity: (
|
|
stsOptions?: STSRoleAssumerOptions,
|
|
stsPlugins?: Pluggable<ServiceInputTypes, ServiceOutputTypes>[]
|
|
) => RoleAssumerWithWebIdentity;
|
|
export declare const decorateDefaultCredentialProvider: (
|
|
provider: DefaultCredentialProvider
|
|
) => DefaultCredentialProvider;
|