Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/73ecce1882dc536bfec539dffe7de9eb692a62907d2e2ca28337017298badd9485cf67337f7bb3a9c92f220acf9e6cea08a3bed4e1bdc2e28405ab4ccf4508
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

9 lines
371 B
Text

import { CredentialProviderOptions, TokenIdentity, TokenIdentityProvider } from "@aws-sdk/types";
export interface FromStaticInit extends CredentialProviderOptions {
token?: TokenIdentity;
}
/**
* Creates a token provider that will read from static token.
* @public
*/
export declare const fromStatic: ({ token, logger }: FromStaticInit) => TokenIdentityProvider;