Rocky_Mountain_Vending/.pnpm-store/v10/files/25/152b37904f3fed0a59aea3c190f2a8f81ec1a19cac2ac98f90f460114e846ed4a0f97c806cc4875fc9ed5fd15df785a0e71e3beeac2f773cd983ff87ede24e
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

17 lines
600 B
Text

import type { CredentialProviderOptions, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
import { FromWebTokenInit } from "./fromWebToken";
/**
* @public
*/
export interface FromTokenFileInit extends Partial<Omit<FromWebTokenInit, "webIdentityToken">>, CredentialProviderOptions {
/**
* File location of where the `OIDC` token is stored.
*/
webIdentityTokenFile?: string;
}
/**
* @internal
*
* Represents OIDC credentials from a file on disk.
*/
export declare const fromTokenFile: (init?: FromTokenFileInit) => RuntimeConfigAwsCredentialIdentityProvider;