Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/d846445dce5cd9a757b2ceb786e5b5dace5acf740fb58765e281dd24bd1aa30b11989bfecf844535b36d332ebcb45a1b5ab9fafe076040ea5ec283fd9f8530
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
362 B
Text

import { HttpRequest } from "@smithy/protocol-http";
import { 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>;
}