Rocky_Mountain_Vending/.pnpm-store/v10/files/a4/e58a946932b9fc6214825b070e7b5edec0ef4de044d77b2a917173eb5bf0b105dfd1c98e425da9f40f0d0e2ac9c7ab730c8450675c2a0ae922fce449856e3d
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

10 lines
672 B
Text

import { WaiterOptions, WaiterResult } from "./waiter";
/**
* Function that runs polling as part of waiters. This will make one inital attempt and then
* subsequent attempts with an increasing delay.
* @param params - options passed to the waiter.
* @param client - AWS SDK Client
* @param input - client input
* @param acceptorChecks - function that checks the acceptor states on each poll.
*/
export declare const runPolling: <Client, Input>({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult>) => Promise<WaiterResult>;