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>
21 lines
587 B
Text
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>;
|