kysely
    Preparing search index...

    Interface PostgresPoolClient

    interface PostgresPoolClient {
        query<R>(
            sql: string,
            parameters: readonly unknown[],
        ): Promise<PostgresQueryResult<R>>;
        query<R>(cursor: PostgresCursor<R>): PostgresCursor<R>;
        release(): void;
    }
    Index

    Methods

    Methods