Rocky_Mountain_Vending/.pnpm-store/v10/files/58/c2e4854cbb3a75e81b9bdedf27d6b35512fdfcb092514ce96b36ad6d1256faa9cc6a5afc7fb224a5df874974e844817653d53a385ddf41920c68a8d7396f1b
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
587 B
Text

import type { AwsHandlerExecutionContext, AwsSdkFeatures } from "@aws-sdk/types";
/**
* @internal
* Indicates to the request context that a given feature is active.
*
* @param context - handler execution context.
* @param feature - readable name of feature.
* @param value - encoding value of feature. This is required because the
* specification asks the SDK not to include a runtime lookup of all
* the feature identifiers.
*/
export declare function setFeature<F extends keyof AwsSdkFeatures>(context: AwsHandlerExecutionContext, feature: F, value: AwsSdkFeatures[F]): void;