Anthony G
Anthony G
Here's a solution without redundant subscriptions: ```ts export const liftEither = ( f: (a: r.Observable) => r.Observable ) => (obs: OBE.ObservableEither): OBE.ObservableEither => { const subjA = new r.Subject() const...
sounds like [morphic-ts](https://github.com/sledorze/morphic-ts#two-minutes-intro) to me
It's similar to [`io-ts`'s schema](https://github.com/gcanti/io-ts/blob/master/Schema.md), if that gives you a frame of reference, but a bit more general and flexible. I'm not super familiar with `Typebox`, but afaict, `morphic-ts` is...
Haha yes it is all a little complicated! I think it's worth it though I'm not sure if it was on purpose, but the API you're describing looks a lot...
Would be resolved by https://github.com/thegamenicorus/react-native-phone-input/pull/43
Just a note - I think `PLens` would be required to implement `insertAt` and `updateAt`, which are [features under discussion](https://github.com/gcanti/fp-ts/issues/1460#issuecomment-824204261)
Progress report: - basic method is to track all parent interfaces for each path, and if a parent extends its child, break the recursion - Since we can't put the...
Thanks @ahrjarrett [for the suggestion](https://github.com/anthonyjoeseph/spectacles-ts/issues/19#issuecomment-1091067156)!
thanks for bringing this up, sorry this is an issue for you and your team. I'll make a change to the docs presently. I'll have to experiment and see if...