Rocky_Mountain_Vending/.pnpm-store/v10/files/3c/f8f709eb976e1e745b6640118844b9f1973cf1ae14ba773e9ee8a38c02a08acf701eb828e20659082fee09f41b45f06b6231c00c6492e7d6c4c96c6155cfe6
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
367 B
Text

import {
AwsCredentialIdentity,
HttpRequest as IHttpRequest,
} from "@smithy/types";
import { AwsSdkSigV4Signer } from "./AwsSdkSigV4Signer";
export declare class AwsSdkSigV4ASigner extends AwsSdkSigV4Signer {
sign(
httpRequest: IHttpRequest,
identity: AwsCredentialIdentity,
signingProperties: Record<string, unknown>
): Promise<IHttpRequest>;
}