Dmitry

Results 97 comments of Dmitry

Funny coincidence, I was just thinking the same thing, and @mikield asked about it just 6 hours ago. What if i use redis as discovery tool? Behavior is the same?

You are right, this is typescript issue opened since 2015 https://github.com/Microsoft/TypeScript/issues/4881 I think someday they implement it. Until then, we can put this on the users shoulders. ```ts class Foo...

`request.cancel()` is a working solution, but in this case automatic retry will not work 😢 Is there a way to fix this issue on a `got.js` level?

I join this feature request. > So what dya need this for actually? @sebastianarena answers your question in this issue https://github.com/OptimalBits/bull/issues/1081#issue-368697657 If you could help with redesigning such type of...

Thank you! When are you planning the next release?

It's **very** often when you developing and DI-based SDK. My real-life example - i am using [playwright](https://playwright.dev/). My facade looks like this ```ts sdk.media('media-id-here') ``` It creates `MediaPage` class instance...

> We need to discuss how to surface this API in a useable way I think there is a very simple solution, but it brings some magic: TypeDI should check...

Is `target: ES2022` supposed to produce such code? If i downgrade to `target: ES2021` the problem disappears

> The code generation here is as-expected Doesn't it reduces readability? I was so happy TypeScript handles initialization ordering in constructor for me. Now i will be forced to rewrite...