Jules Sam. Randolph
Jules Sam. Randolph
@jagi Np ! I might push a PR if I find the time
@kevinduffey @adam-lynch Would love this feature. I suggest a way to select responses status in a very flexible manner, i.e. ``` //: # Select optionally all status 200,304: # Select...
@LuisTCosta I love the idea of parametrized types since it would greatly enhance DRY principle and modularity. For the `PATCH` issue, where all fields are optional, check my suggestion: partial...
**EDIT** Renamed to *partial* inheritance because it reminds me of `Partial` typescript generic type definition: ``` typescript type Partial = { [P in keyof T]?: T[P]; }; ```
@LuisTCosta I have expanded the definition and will add edit versions on the header for traceability. Feel free to comment :-)
@LuisTCosta Actually, this is what I meant! **The precedence of the required attribute is order-independent** (I will make that clear). Conflicting types are merged according to the specification: > Multiple...
@ardatan I remember specifically removing this import and seeing the warning disappear. Then I cloned this repo, switched the `detectLeaks` flag and watched a bunch of positives. Checked the referred...
@ardatan absolutely, I meant that my assumption was wrong, at least for this test file.
@ardatan When I find the time, I'll try to see if I can reproduce my issue in a minimal setup, and give you updates. As for this PR, I think...