Petra Jaros
Petra Jaros
I 100% agree that portable view components like this are a great idea (in fact, I'm super excited about them), but my gut says they should know about the data,...
Yeah, that makes sense to me. Still, though, I think that can be defined in an ontology and used in any JSON-LD document, without needing to reserve it in the...
Similarly, this would enable the type checking of [MDX](https://mdxjs.com/) files, which is important for folks using the newer Docs features of Storybook.
@South-Paw I came here to ask if it would be a good idea to do exactly that! We might try your fork; if we do, we'll toss some PRs your...
For word-based motions and text objects: `w` and `iw`. That might be it, but it's important. Can those be built on top of `RubyCursorIdentifier()`? I didn't realize that it was...
It sort of looks like [`index.d.ts` is trying to merge its matchers into the `Expect` interface](https://github.com/jest-community/jest-extended/blob/1f91c0969596c680f604bc75a4a17fb230d4e703/types/index.d.ts#L874-L880), but instead it's just creating a new local `Expect` interface.
@Alexsey Yes, I know. That's exactly the point I'm making.
For Chrome (and hopefully other related browsers), this is as simple as adding a `--new-window` arg to the command line (according to my testing).
@Stevenic > How can I say that `T` is a plain old JavaScript object that can have any fields keyed by a string? If I can't use `Record` to do...
@gabritto Similarly, this hole exists: ```ts const a: Record = {}; const b: Record = a; b.uhOh = "goodbye" a.uhOh // == "goodbye" // ^? "hello" ```