Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/95c75a20ba573c70f68b81efe2995a0c62dc69777d1b9c54dd1a961ff9d0cde6f431c95a20017a19d95ab563d4e2d3e44aff1767a5875427f6ec21768e4e3d
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
412 B
Text

import { Paginator } from "@smithy/types";
import {
ListAccountRolesCommandInput,
ListAccountRolesCommandOutput,
} from "../commands/ListAccountRolesCommand";
import { SSOPaginationConfiguration } from "./Interfaces";
export declare const paginateListAccountRoles: (
config: SSOPaginationConfiguration,
input: ListAccountRolesCommandInput,
...rest: any[]
) => Paginator<ListAccountRolesCommandOutput>;