Rocky_Mountain_Vending/.pnpm-store/v10/files/1e/dac019d451f712ccd999d8277f40d68a4e9ff36a9cb14bc1142917fdbf7ccb14298d3d744eaf27f1295cfccc9591ac5a0f89172bc353631fe431163f6d3b81
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

21 lines
587 B
Text

import {
AwsCredentialIdentity,
HttpRequest as IHttpRequest,
} from "@smithy/types";
import { S3ExpressIdentity } from "../interfaces/S3ExpressIdentity";
export declare const signS3Express: (
s3ExpressIdentity: S3ExpressIdentity,
signingOptions: {
signingDate: Date;
signingRegion: string;
signingService: string;
},
request: IHttpRequest,
sigV4MultiRegionSigner: {
signWithCredentials(
req: IHttpRequest,
identity: AwsCredentialIdentity,
opts?: Partial<typeof signingOptions>
): Promise<IHttpRequest>;
}
) => Promise<IHttpRequest>;