Files
klz-cables.com/.pnpm-store/v10/files/c9/38d15fdece032d62563eb3f84e6524428fb9ff68f0fba9074de00637ca484388343414f47f0570110fe1332d373de2eedc6efb664e5eae33c71677b1302d5d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

35 lines
1.1 KiB
Plaintext

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