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>
20 lines
550 B
Text
20 lines
550 B
Text
import { AwsCredentialIdentity } from "@aws-sdk/types";
|
|
import {
|
|
HttpRequest,
|
|
RequestPresigner,
|
|
RequestSigner,
|
|
RequestSigningArguments,
|
|
} from "@smithy/types";
|
|
export type OptionalCrtSignerV4 = {
|
|
new (options: any): RequestPresigner &
|
|
RequestSigner & {
|
|
signWithCredentials(
|
|
requestToSign: HttpRequest,
|
|
credentials: AwsCredentialIdentity,
|
|
options: RequestSigningArguments
|
|
): Promise<HttpRequest>;
|
|
};
|
|
};
|
|
export declare const signatureV4CrtContainer: {
|
|
CrtSignerV4: null | OptionalCrtSignerV4;
|
|
};
|