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
733 B
Text
22 lines
733 B
Text
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
import {
|
|
CreateTokenCommandInput,
|
|
CreateTokenCommandOutput,
|
|
} from "./commands/CreateTokenCommand";
|
|
import { SSOOIDCClient } from "./SSOOIDCClient";
|
|
export interface SSOOIDC {
|
|
createToken(
|
|
args: CreateTokenCommandInput,
|
|
options?: __HttpHandlerOptions
|
|
): Promise<CreateTokenCommandOutput>;
|
|
createToken(
|
|
args: CreateTokenCommandInput,
|
|
cb: (err: any, data?: CreateTokenCommandOutput) => void
|
|
): void;
|
|
createToken(
|
|
args: CreateTokenCommandInput,
|
|
options: __HttpHandlerOptions,
|
|
cb: (err: any, data?: CreateTokenCommandOutput) => void
|
|
): void;
|
|
}
|
|
export declare class SSOOIDC extends SSOOIDCClient implements SSOOIDC {}
|