Merge pull request #21681 from ChrisChares/master

[pg] Add "rowMode?: string" to QueryConfig
This commit is contained in:
Benjamin Lichtman
2017-11-22 11:55:19 -05:00
committed by GitHub
+2 -1
View File
@@ -1,4 +1,4 @@
// Type definitions for pg 7.1
// Type definitions for pg 7.4
// Project: https://github.com/brianc/node-postgres
// Definitions by: Phips Peter <https://github.com/pspeter3>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -47,6 +47,7 @@ export interface QueryConfig {
name?: string;
text: string;
values?: any[];
rowMode?: string;
}
export interface QueryResult {