Rocky_Mountain_Vending/.pnpm-store/v10/files/17/ca1083c332022eee4ed87972671182f94e81ee933aa452b8067fdb36ae57296df9da3fe3f1a3248fcb508d33236e210ab51da38a147ac679b2d942f44c49b2
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

28 lines
No EOL
1,000 B
Text

import type * as pgTypes from 'pg';
import type * as pgPoolTypes from 'pg-pool';
export declare type PostgresCallback = (err: Error, res: object) => unknown;
export interface PgParsedConnectionParams {
database?: string;
host?: string;
port?: number;
user?: string;
}
export interface PgClientExtended extends pgTypes.Client {
connectionParameters: PgParsedConnectionParams;
}
export declare type PgPoolCallback = (err: Error, client: any, done: (release?: any) => void) => void;
export interface PgPoolOptionsParams {
database: string;
host: string;
port: number;
user: string;
idleTimeoutMillis: number;
maxClient: number;
}
export declare const EVENT_LISTENERS_SET: unique symbol;
export interface PgPoolExtended extends pgPoolTypes<pgTypes.Client> {
options: PgPoolOptionsParams;
[EVENT_LISTENERS_SET]?: boolean;
}
export declare type PgClientConnect = (callback?: Function) => Promise<void> | void;
//# sourceMappingURL=internal-types.d.ts.map