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>
18 lines
508 B
Text
18 lines
508 B
Text
import {
|
|
CredentialProviderOptions,
|
|
RuntimeConfigAwsCredentialIdentityProvider,
|
|
} from "@aws-sdk/types";
|
|
import { FromWebTokenInit } from "./fromWebToken";
|
|
export interface FromTokenFileInit
|
|
extends Partial<
|
|
Pick<
|
|
FromWebTokenInit,
|
|
Exclude<keyof FromWebTokenInit, "webIdentityToken">
|
|
>
|
|
>,
|
|
CredentialProviderOptions {
|
|
webIdentityTokenFile?: string;
|
|
}
|
|
export declare const fromTokenFile: (
|
|
init?: FromTokenFileInit
|
|
) => RuntimeConfigAwsCredentialIdentityProvider;
|