Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/b3150d4e86f53a496c1f852b8bec443c79a89ce1c7f31121d258183a3a6a6e9cd607c1f2f4d03931f2856c0539704dbc0ec4917e56a4b77c8f2e32e9796dfa
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

8 lines
335 B
Text

import type { HttpRequest, HttpSigner, Identity } from "@smithy/types";
/**
* Signer for the synthetic @smithy.api#noAuth auth scheme.
* @internal
*/
export declare class NoAuthSigner implements HttpSigner {
sign(httpRequest: HttpRequest, identity: Identity, signingProperties: Record<string, unknown>): Promise<HttpRequest>;
}