Rocky_Mountain_Vending/.pnpm-store/v10/files/43/66743bb8a3edb0afa6999418fd72c7ca4556da45a1087ae98a28d74f427699e63e0e122a98ffa216084cc3a48ff282ec1ad71d032bb1395b52d600ba3f793c
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

8 lines
226 B
Text

import type { PaginationConfiguration } from "@smithy/types";
import { SSOClient } from "../SSOClient";
/**
* @public
*/
export interface SSOPaginationConfiguration extends PaginationConfiguration {
client: SSOClient;
}