Rocky_Mountain_Vending/.pnpm-store/v10/files/2d/faa8d1c2d5186092a6b5de5c751ef0d10e1fd15ea90dc2ad933b8dec6a0fde2c41bbd12cd15a30c17c9437e739e79ba2d9efeb25cff97948520fed93382ecf
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

22 lines
799 B
Text

import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
import {
CreateOAuth2TokenCommandInput,
CreateOAuth2TokenCommandOutput,
} from "./commands/CreateOAuth2TokenCommand";
import { SigninClient } from "./SigninClient";
export interface Signin {
createOAuth2Token(
args: CreateOAuth2TokenCommandInput,
options?: __HttpHandlerOptions
): Promise<CreateOAuth2TokenCommandOutput>;
createOAuth2Token(
args: CreateOAuth2TokenCommandInput,
cb: (err: any, data?: CreateOAuth2TokenCommandOutput) => void
): void;
createOAuth2Token(
args: CreateOAuth2TokenCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: CreateOAuth2TokenCommandOutput) => void
): void;
}
export declare class Signin extends SigninClient implements Signin {}