Rocky_Mountain_Vending/.pnpm-store/v10/files/7a/02e93301c0f7abda0d133b4c9b4453c808bdd70e433aac6476c97e2ef4f5ee2e96ad15b51f9b0caa2b7c52f3eb7f760eece9a59f710b308b0e2af2107902e4
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

24 lines
640 B
Text

import type { RequestSigner } from "@smithy/types";
/**
* @public
*/
export type OptionalSigV4aSigner = {
/**
* This constructor is not typed so as not to require a type import
* from the signature-v4a package.
*
* The true type is SignatureV4a from @smithy/signature-v4a.
*/
new (options: any): RequestSigner;
};
/**
* @public
*
* \@smithy/signature-v4a will install the constructor in this
* container if it's installed.
*
* This avoids a runtime-require being interpreted statically by bundlers.
*/
export declare const signatureV4aContainer: {
SignatureV4a: null | OptionalSigV4aSigner;
};