Ronny Hsieh
Ronny Hsieh
I'm not sure what case will it not be appropriately narrowed. ```ts type Prototype = { a: number | null }; type NewType = Prototype & { a: number };...
> > I'm not sure what case will it not be appropriately narrowed. > > Interesting! I'm pretty sure there was a time when you needed to remove a property...
> I'm still not sold on setting `isLoading` to `false`. If we do that, wouldn't we also need to remove `'loading'` from the `'status'` field? Why is it important? In...
Hi, I think I found a better way to solve this issue. The `Omit` and `loading` things wouldn't be a problem anymore. Other properties should also work properly such as...
Thanks for the reply. I just can't find any build result link from the result.  Here is my action file. ```yml name:...
Also, hit this, Is there a walkaround now?
I just switched to`rollup-plugin-dts` for the definition files. I still use rollup-plugin-ts for the JS files, though.
I just found a walkaround. You can refer to it before the official resolution of this. ```tsx { chart._dom.dataset.testid = 'test'; }} /> ```
HI, what is the solution now? Should I use the walkaround or add the framework.options.strictMode? Is there a document about this setting? Thanks.
Thanks for your reply. I understand that the code is currently using overlapping. However, I think it should work adequately only to add the `font-family: inherit` to the textarea and...