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>
19 lines
625 B
Text
19 lines
625 B
Text
import { AwsCredentialIdentity } from "@aws-sdk/types";
|
|
import { SignatureV4 } from "@smithy/signature-v4";
|
|
import {
|
|
HttpRequest as IHttpRequest,
|
|
RequestPresigningArguments,
|
|
RequestSigningArguments,
|
|
} from "@smithy/types";
|
|
export declare class SignatureV4S3Express extends SignatureV4 {
|
|
signWithCredentials(
|
|
requestToSign: IHttpRequest,
|
|
credentials: AwsCredentialIdentity,
|
|
options?: RequestSigningArguments
|
|
): Promise<IHttpRequest>;
|
|
presignWithCredentials(
|
|
requestToSign: IHttpRequest,
|
|
credentials: AwsCredentialIdentity,
|
|
options?: RequestPresigningArguments
|
|
): Promise<IHttpRequest>;
|
|
}
|