Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/c2416ba5230744596fcd10b0617f7b8a1390b78969031ca7d881e77b78ac0c63f32fe8d9197455951c25abf08aebe1c8c26952722ad05d0973d5980e78c17e
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
591 B
Text

import { 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;