Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/bae14548faf1b0aa8801a47625504bf73aff312e89a7bef4d3fe6d6f2b54c7d57b99103add110730013d7790facceb60601d5e5796b15cc947998a61913e56
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
659 B
Text

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