Rocky_Mountain_Vending/.pnpm-store/v10/files/6e/5a805a5e5e9284aa3ee760732e3fd8c8f9d055ddc1508e33e034660924e73568602f93f4d0719182b421de5fa25b4f5403f009d6edb77d740b4f1ede2d203b
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
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 {}