Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/1867ecf22e1c5127ba6b006d6ee6fef416a647d260a3e78d8d484bea28956c9fa9d76a6938dab1d9a859c3fca08c6e1fd570b4b9b5a04efc22c42ee4838adc
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

16 lines
720 B
Text

import { Logger, Provider } from "@smithy/types";
import { InstanceMetadataCredentials } from "../types";
/**
* @internal
*
* IMDS credential supports static stability feature. When used, the expiration
* of recently issued credentials is extended. The server side allows using
* the recently expired credentials. This mitigates impact when clients using
* refreshable credentials are unable to retrieve updates.
*
* @param provider Credential provider
* @returns A credential provider that supports static stability
*/
export declare const staticStabilityProvider: (provider: Provider<InstanceMetadataCredentials>, options?: {
logger?: Logger;
}) => Provider<InstanceMetadataCredentials>;