Alita Moore
Alita Moore
looks like Exclude isn't going to work for this, the following is working better for me now: ```ts type MemberOfUnion = Member extends Union ? true : [Union] extends [infer...
here's my example use case, btw: ```ts export type MachineMessenger< Events extends string, EventPropsEnum extends MachineMessengerPropMap > = { [key in Events]: EventPropsEnum[key] extends undefined ? () => void :...
this should be updated in the source code here as well...
As an update, I have implemented a work around for typescript-json-schema, I think the ability to remove nested / duplicated structures will lessen the need for work on this tool.
on a different note, when I do --reuse-model it would be nice to have the option to merge the naming / reference into a single one. i.e. currently I might...
Thanks @ApollonSeven ([message](https://github.com/CocoaPods/CocoaPods/issues/11641#issuecomment-1317210370)) this helped me, but the issue ended up being because RN build wasn't working with M1. So I went step by step instead. turns out I needed...
dvc pull is still very slow because it seems that the "applying changes" runs single threaded?
@mathematiguy it would make a lot more sense if dvc automatically reduced the number of files under the hood by compressing them, and then when you pull it extracts them....
this doesn't work for me, it yells about python-libvirt my change fixes that, though; so maybe combine? https://github.com/arthurk/homebrew-virt-manager/pull/4
Using enums in Typescript except a standard string is helpful for many reasons. For example, ## 1. the ability to add more values in the future without having to change...