Rocky_Mountain_Vending/.pnpm-store/v10/files/3a/7ac66bcea480014ec688220fe28338779877bd84f2de8a63db828f8662c17426d3cd9f06f7f89ee5b449b48bbb620aaf1925dfcb9893095cbf315199f5bf16
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
361 B
Text

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