Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/70457d6625cf2a04e0a105e12dde3a8c0081b2812666c40ed671360e4f3063001cec2ba0ca7dea93fa400054ac69a4e16be1118bde70a15517e07e817c1cab
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

12 lines
300 B
Text

import {
CredentialProviderOptions,
TokenIdentity,
TokenIdentityProvider,
} from "@aws-sdk/types";
export interface FromStaticInit extends CredentialProviderOptions {
token?: TokenIdentity;
}
export declare const fromStatic: ({
token,
logger,
}: FromStaticInit) => TokenIdentityProvider;