Files
klz-cables.com/.pnpm-store/v10/files/ff/56360fa4a1fef660a2b155bc3310f7eca25db9cc4a18fcec1447e2281e992a3f77c2c9ae5afaf9fb3801598d70fac859534a8bb6d3f44ef2f888f89a58d568
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

57 lines
1.9 KiB
Plaintext

import * as pg from "./index.js";
declare const PG: {
defaults: typeof pg.defaults;
Client: typeof pg.Client;
ClientBase: typeof pg.ClientBase;
Events: typeof pg.Events;
Query: typeof pg.Query;
Pool: typeof pg.Pool;
Connection: typeof pg.Connection;
types: typeof pg.types;
DatabaseError: typeof pg.DatabaseError;
TypeOverrides: typeof pg.TypeOverrides;
escapeIdentifier: typeof pg.escapeIdentifier;
escapeLiteral: typeof pg.escapeLiteral;
Result: typeof pg.Result;
native: typeof pg.native;
};
declare namespace PG {
type QueryConfigValues<T> = pg.QueryConfigValues<T>;
type ClientConfig = pg.ClientConfig;
type ConnectionConfig = pg.ConnectionConfig;
type Defaults = pg.Defaults;
type PoolConfig = pg.PoolConfig;
type QueryConfig<I = any[]> = pg.QueryConfig<I>;
type CustomTypesConfig = pg.CustomTypesConfig;
type Submittable = pg.Submittable;
type QueryArrayConfig<I = any[]> = pg.QueryArrayConfig<I>;
type FieldDef = pg.FieldDef;
type QueryResultBase = pg.QueryResultBase;
type QueryResultRow = pg.QueryResultRow;
type QueryResult<R extends QueryResultRow = any> = pg.QueryResult<R>;
type QueryArrayResult<R extends any[] = any[]> = pg.QueryArrayResult<R>;
type Notification = pg.Notification;
type ResultBuilder<R extends QueryResultRow = any> = pg.ResultBuilder<R>;
type QueryParse = pg.QueryParse;
type BindConfig = pg.BindConfig;
type ExecuteConfig = pg.ExecuteConfig;
type MessageConfig = pg.MessageConfig;
type PoolOptions = pg.PoolOptions;
type PoolClient = pg.PoolClient;
type ClientBase = pg.ClientBase;
type Client = pg.Client;
type Query = pg.Query;
type Events = pg.Events;
type Pool = pg.Pool;
type Connection = pg.Connection;
type DatabaseError = pg.DatabaseError;
type TypeOverrides = pg.TypeOverrides;
type Result = pg.Result;
}
export * from "./index.js";
export default PG;