lazytype
lazytype
I just ran into this as well. A preferable option that assumes less about users' directory structure would be to accept *.d.ts files as direct inputs, i.e. `downlevel-dts dist/*.d.ts dist/ts3.4`.
@kalzoo @Gobot1234 could a v2.0.0b4 be tagged and released to PyPI? It would help immediately unblock the ability to use Python 3.10
It doesn't quite cover all the same use-cases since `hidden` only considers the computed `visibility` CSS property whereas `toBeVisible` also considers `display` and `opacity` (and doesn't require a `role` attribute).
I was wondering if we could change the behavior to mean, "the argument is optional, but explicit `None` is not allowed". Here's a simple, contrived use-case: ```python class Point: ......
I'd expect it to make `FastWriteCounter` faster since it would remove the need for a lock
Also just wanted to throw out the possibility of being able to do something like: ```javascript using (retry({maxAttempts: 3, backoff: 1000})) { ... } ``` where `retry` adds behavior like:...