Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/dcb71d3c5039c27e13b413a1281cff4066ede6ef7a2773fdf39c8d028afe0ae626344a8d25f93742a2b452bac8ca2d0078b97b821f029ac36308008e1552de
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
584 B
Text

import type { HandlerExecutionContext, SmithyFeatures } from "@smithy/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 library not to include a runtime lookup of all
* the feature identifiers.
*/
export declare function setFeature<F extends keyof SmithyFeatures>(context: HandlerExecutionContext, feature: F, value: SmithyFeatures[F]): void;