mysql2 3.14.4 → 3.14.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -92,9 +92,9 @@ export interface StreamOptions {
|
|
|
92
92
|
highWaterMark?: number;
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
|
-
* The object mode of the stream
|
|
95
|
+
* The object mode of the stream is always set to `true`
|
|
96
96
|
*/
|
|
97
|
-
objectMode?:
|
|
97
|
+
objectMode?: true;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
export interface QueryError extends NodeJS.ErrnoException {
|