Rocky_Mountain_Vending/.pnpm-store/v10/files/68/5fc51649cbc192fe6e8830a8ec00e6dd24a7a492c6913fe2983f9bd483bf2c5bd6e23721b44cfc78bb491dcaf66cb17b7af8c6a4d6a49dfda472cc1b3f4c5f
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
338 B
Text

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