Rocky_Mountain_Vending/.pnpm-store/v10/files/c3/ab051614b86149623c35e72f11544de782f7c33bb895793d9e3f7ed93badb2868b9efba49ff208edb2d62518076545e08a61e38b389df74af795f7f8d83a76
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

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;
};