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>
18 lines
1,021 B
Text
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 {
|
|
}
|