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>
24 lines
659 B
Text
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;
|
|
};
|