Comparing version 7.4.4 to 7.4.5
@@ -56,9 +56,2 @@ // Type definitions for pg 7.4 | ||
export interface QueryResult { | ||
command: string; | ||
rowCount: number; | ||
oid: number; | ||
rows: any[]; | ||
} | ||
export interface FieldDef { | ||
@@ -74,10 +67,17 @@ name: string; | ||
export interface QueryArrayResult { | ||
export interface QueryResultBase { | ||
command: string; | ||
rowCount: number; | ||
oid: number; | ||
rows: any[][]; | ||
fields: FieldDef[]; | ||
} | ||
export interface QueryResult extends QueryResultBase { | ||
rows: any[]; | ||
} | ||
export interface QueryArrayResult extends QueryResultBase { | ||
rows: any[][]; | ||
} | ||
export interface Notification { | ||
@@ -84,0 +84,0 @@ processId: number; |
{ | ||
"name": "@types/pg", | ||
"version": "7.4.4", | ||
"version": "7.4.5", | ||
"description": "TypeScript definitions for pg", | ||
@@ -24,4 +24,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "e92e783279a6851664180fd8952fa17ecf3fd162130ea406a224f3283b363e46", | ||
"typesPublisherContentHash": "fb01c7557d4d2571425e41b8d0261dfd7a2412483e08cb1a81ed662e47986c67", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 15 Feb 2018 19:14:38 GMT | ||
* Last updated: Sat, 03 Mar 2018 00:41:20 GMT | ||
* Dependencies: events, stream, pg-types, tls, node | ||
@@ -14,0 +14,0 @@ * Global values: none |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7961
138