Artur Kozak
Artur Kozak
Confirmed, thanks for finding this! Looks like this was introduced at v3.0, when the `DeepPartial` implementation was "turned inside out" in a refactor -- [see the commit here](https://github.com/krzkaczor/ts-essentials/pull/66/commits/9536fd57a0c89ba358a16dd657054cf7960bdb59#diff-f0110f871bbb78393553f89381b8a4fdR9) @krzkaczor @FrancescoBorzi...
The last version (2.12) that worked with `{}`, in case someone wants to play around comparing to the current version: ```typescript export type DeepPartial = { [P in keyof T]?:...
Should we file an issue to TS then? Can we somehow work around this issue? (well, apart from going back to the form before the refactor I linked)
Yes, these look helpful, @krzkaczor pls take a look But, I see they have been proposed a long time ago (_"With the help of the Exclude type which was added...
I see some of these are useful, but also we could add them in smaller PRs of fewer closely-related types, so it's easier to discuss. For some types I don't...
Some higher level thoughts: @krzkaczor we need to clarify the scope of our lib :) this is named "essentials" after all, so we probably don't want to include too many...
There is actually one usecase being proposed as a separate useful type in #100, though it's not about functions -- @krzkaczor could you describe your original case for this type?
The best place for such a question would be, obviously, Stack Overflow :) If you're interested in validating (or rejecting) additional properties, [class-validator](https://github.com/typestack/class-validator) + [class-transformer](https://github.com/typestack/class-transformer) may have some tricks. If...
For anyone looking for a quick & clean workaround -- I patched jest typings with [patch-package](https://github.com/ds300/patch-package), to be placed under `patches/@types/jest+23.3.13.patch` ```patch patch-package --- a/node_modules/@types/jest/index.d.ts +++ b/node_modules/@types/jest/index.d.ts @@ -448,7 +448,9...
alternatively, maybe there is a way to just activate all monitors for the lockscreen? I can't seem to find any config for the MATE lockscreen appearance, but I'll look more...