| 3 | import Cursor from 'pg-cursor' |
| 4 | |
| 5 | interface QueryStreamConfig { |
| 6 | batchSize?: number |
| 7 | highWaterMark?: number |
| 8 | rowMode?: 'array' |
| 9 | types?: any |
| 10 | } |
| 11 | |
| 12 | class QueryStream extends Readable implements Submittable { |
| 13 | cursor: any |
nothing calls this directly
no outgoing calls
no test coverage detected