@fdy/simple-postgres
Advanced tools
Comparing version 7.0.0-alpha.5 to 7.0.0-alpha.6
@@ -6,3 +6,2 @@ import { PoolClient, QueryResult } from "pg"; | ||
interface QueryResultRow { | ||
[column: string]: unknown; | ||
} | ||
@@ -9,0 +8,0 @@ /** |
@@ -8,3 +8,3 @@ import type QueryStream from "pg-query-stream"; | ||
*/ | ||
export interface TypedQueryStream<T extends Record<string, unknown>> extends QueryStream { | ||
export interface TypedQueryStream<T> extends QueryStream { | ||
read(size?: number): T[] | null; | ||
@@ -11,0 +11,0 @@ addListener(event: "close", listener: () => void): this; |
{ | ||
"name": "@fdy/simple-postgres", | ||
"version": "7.0.0-alpha.5", | ||
"version": "7.0.0-alpha.6", | ||
"description": "a minimal postgres interface for node", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
41758
826