Rocky_Mountain_Vending/.pnpm-store/v10/files/34/93c06ebf2a0cb33732c9127aab81ecce92c4f05f655133fd631fc54a1b5ea9f9dc896d09dc0497d29fcb0394644d2f9ce200f225bdf2eeab0172f71c8ec0cd
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

47 lines
1.4 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
import {
ServiceInputTypes,
ServiceOutputTypes,
SSOClientResolvedConfig,
} from "../SSOClient";
export { __MetadataBearer };
export { $Command };
export interface ListAccountsCommandInput extends ListAccountsRequest {}
export interface ListAccountsCommandOutput
extends ListAccountsResponse,
__MetadataBearer {}
declare const ListAccountsCommand_base: {
new (
input: ListAccountsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListAccountsCommandInput,
ListAccountsCommandOutput,
SSOClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: ListAccountsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListAccountsCommandInput,
ListAccountsCommandOutput,
SSOClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ListAccountsCommand extends ListAccountsCommand_base {
protected static __types: {
api: {
input: ListAccountsRequest;
output: ListAccountsResponse;
};
sdk: {
input: ListAccountsCommandInput;
output: ListAccountsCommandOutput;
};
};
}