Dmitry Blues
Dmitry Blues
@thynson tsconfig.json ``` "emitDecoratorMetadata": true ```
@adunkman OK. I will do it
Readable doesn't have record type ```typescript function getPostsStream(): Readable { return connection.query('SELECT * FROM posts').stream(); } getPostsStream() .on('data', post => { console.log(post); }); ``` Iterable has record type but there...
1. I think in general the stream should not be in the promise. Examples: ```typescript // nodejs fs const stream = fs.createReadStream('/dev/input/event0'); // mysql const stream = connection.query('SELECT * FROM...
@2jordan3 sorry, I closed #5684 by accident. > Putting String(name) in the dependency array may not work as intended. How about putting the value of name directly in the dependency...