Rocky_Mountain_Vending/.pnpm-store/v10/files/da/678bc30cfb9ecf59d5ded7d9dc8037e421cdc47e480c3969aaef218e2e8ce50bd6a6bf9fc68ffb92bc03b9667c9e319ac046a8fd024b2fe33fd226e1d5bda4
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

11 lines
388 B
Text

import { Paginator } from "@smithy/types";
import {
ListAccountsCommandInput,
ListAccountsCommandOutput,
} from "../commands/ListAccountsCommand";
import { SSOPaginationConfiguration } from "./Interfaces";
export declare const paginateListAccounts: (
config: SSOPaginationConfiguration,
input: ListAccountsCommandInput,
...rest: any[]
) => Paginator<ListAccountsCommandOutput>;