Alec Larson
Alec Larson
Does this fix the following problem? ```ts let foo = React.createElement(Foo) foo = /* [ts] Type 'Element' is not assignable to type 'ComponentElement'. Types of property 'type' are incompatible. Type...
@weswigham Awesome! > I actually started work on this today, sorry 😉 Is it still a high priority for you? 😎 **edit:** Oh, [looks like](https://github.com/Microsoft/TypeScript/projects/5#card-7855018) it's in-progress still. Can't wait!
Hi @osdiab, this issue has a fix available in `radashi@beta` today (see [#24](https://github.com/radashi-org/radashi/pull/24)). An official release is pending. We'd love to have you participate in the [discussion](https://github.com/orgs/radashi-org/discussions) and/or [development](https://github.com/radashi-org/radashi/pulls) of...
Any reason not to use [birpc](https://github.com/antfu/birpc) here? I've been using it with success and I believe Anthony would cater to our needs if any necessary features were missing.
I believe the more popular term is `arrify` or `arraify`
Hi @chiui-li, we added `castArray` over at the Radashi fork: https://github.com/radashi-org/radashi/pull/97 You can use it today by installing `radashi@beta`. An official release is pending.
Hi @JacobWeisenburger, this is fixed in the [Radashi fork](https://github.com/radashi-org/radashi), along with many other things. Check us out!
This is still targeting Radash. We can get it merged over at [Radashi](https://github.com/radashi-org/radashi) fork.
The built-in `Capitalize` type does not match the behavior of Radash `capitalize`. ```ts type Foo = Capitalize // ^? 'Foo Bar' let foo = _.capitalize('foo Bar') // => 'Foo bar'...
I think it'd be better to have a test be able to specify its file dependencies. ```ts test('foo', () => { const foo = fs.readFileSync('foo.html') expect.watch('foo.html') }) ``` I have...