Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/2d5825d08cc47b888ddedcb49b7453cde856a55160deaf77cce787c9671fc85a0f93f7b20970cc37158eb0ae0a8951cba4a0d9640ed18bc60795036f80a7aa
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
522 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