Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/c0b66fc16b92aecd52927b871af405681358692d455fd6dad3d7675d504737b2ade29ecd90f5853db029a5fe14e57bd0d00e01d2a76d357d1d1e5e4a53da78
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

12 lines
No EOL
509 B
Text

export interface PromiseBuffer<T> {
$: Array<PromiseLike<T>>;
add(taskProducer: () => PromiseLike<T>): PromiseLike<T>;
drain(timeout?: number): PromiseLike<boolean>;
}
export declare const SENTRY_BUFFER_FULL_ERROR: unique symbol;
/**
* Creates an new PromiseBuffer object with the specified limit
* @param limit max number of promises that can be stored in the buffer
*/
export declare function makePromiseBuffer<T>(limit?: number): PromiseBuffer<T>;
//# sourceMappingURL=promisebuffer.d.ts.map