Rocky_Mountain_Vending/.pnpm-store/v10/files/44/ee60e92d6190e9364da45c3d4a1f8cc9a988e4053cd0e075c04e51319b8b9a10d8d0f00810236248269363642d59e2d920bee35d8cde5862eeb50b0a73ad5e
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

18 lines
1,021 B
Text

import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
import { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand";
import { SigninClient } from "./SigninClient";
export interface Signin {
/**
* @see {@link CreateOAuth2TokenCommand}
*/
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;
}
/**
* AWS Sign-In manages authentication for AWS services. This service provides
* secure authentication flows for accessing AWS resources from the console and developer tools.
* @public
*/
export declare class Signin extends SigninClient implements Signin {
}