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>
22 lines
799 B
Text
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 {}
|