Rocky_Mountain_Vending/.pnpm-store/v10/files/6f/92d8663ac0a9bbdfce1950b363f3bc4e12a26ddc02b0ec8d8f673c269428fca3918c3515e4a85ac7fc6a801f8f35776e1c5770a4c0ef4204c779294f7f2b3f
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

8 lines
359 B
Text

import { HttpRequest } from "@smithy/protocol-http";
import type { HttpRequest as IHttpRequest, HttpSigner, TokenIdentity } from "@smithy/types";
/**
* @internal
*/
export declare class HttpBearerAuthSigner implements HttpSigner {
sign(httpRequest: HttpRequest, identity: TokenIdentity, signingProperties: Record<string, any>): Promise<IHttpRequest>;
}