Rocky_Mountain_Vending/.pnpm-store/v10/files/85/cb99e111b49f274412551107827fe5d4a57aa25308ef24a596660733649b2490943d375e65d6014ba5d331e0256719d509b2f3ab3612fc968e1cc2dfefc3d3
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

32 lines
772 B
Text

/**
* @public
*/
export interface ConnectionPool<T> {
/**
* Retrieve the first connection in the pool
*/
poll(): T | void;
/**
* Release the connection back to the pool making it potentially
* re-usable by other requests.
*/
offerLast(connection: T): void;
/**
* Removes the connection from the pool, and destroys it.
*/
destroy(connection: T): void;
/**
* Implements the iterable protocol and allows arrays to be consumed
* by most syntaxes expecting iterables, such as the spread syntax
* and for...of loops
*/
[Symbol.iterator](): Iterator<T>;
}
/**
* Unused.
* @internal
* @deprecated
*/
export interface CacheKey {
destination: string;
}