Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/037af2b46ecb0cb5061036ba8f7cb2e4df6f1c04500ad0604112229dc1b4b7a8bf9b19cfa21679fedc339d38c92db284b7df282e830c360e95d7f610f36122
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

10 lines
427 B
Text

import type { Provider } from "@smithy/types";
import type { RemoteProviderInit } from "./remoteProvider/RemoteProviderInit";
import type { InstanceMetadataCredentials } from "./types";
/**
* @internal
*
* Creates a credential provider that will source credentials from the EC2
* Instance Metadata Service
*/
export declare const fromInstanceMetadata: (init?: RemoteProviderInit) => Provider<InstanceMetadataCredentials>;