Rocky_Mountain_Vending/.pnpm-store/v10/files/79/11235dd5e30cabd70f11a6cff6b809957dafec8e5fa7306386fdcfc68d5210824036bbc8e7cbaee5822670a8dee19305729420264eb2ffecd94585d2a22401
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

39 lines
1.3 KiB
Text

import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
import {
AssumeRoleCommandInput,
AssumeRoleCommandOutput,
} from "./commands/AssumeRoleCommand";
import {
AssumeRoleWithWebIdentityCommandInput,
AssumeRoleWithWebIdentityCommandOutput,
} from "./commands/AssumeRoleWithWebIdentityCommand";
import { STSClient } from "./STSClient";
export interface STS {
assumeRole(
args: AssumeRoleCommandInput,
options?: __HttpHandlerOptions
): Promise<AssumeRoleCommandOutput>;
assumeRole(
args: AssumeRoleCommandInput,
cb: (err: any, data?: AssumeRoleCommandOutput) => void
): void;
assumeRole(
args: AssumeRoleCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: AssumeRoleCommandOutput) => void
): void;
assumeRoleWithWebIdentity(
args: AssumeRoleWithWebIdentityCommandInput,
options?: __HttpHandlerOptions
): Promise<AssumeRoleWithWebIdentityCommandOutput>;
assumeRoleWithWebIdentity(
args: AssumeRoleWithWebIdentityCommandInput,
cb: (err: any, data?: AssumeRoleWithWebIdentityCommandOutput) => void
): void;
assumeRoleWithWebIdentity(
args: AssumeRoleWithWebIdentityCommandInput,
options: __HttpHandlerOptions,
cb: (err: any, data?: AssumeRoleWithWebIdentityCommandOutput) => void
): void;
}
export declare class STS extends STSClient implements STS {}