yuki0410
yuki0410
@mirus-ua Thanks for the advice. I too use type when writing code in my daily life. However, when creating libraries, it is more convenient to be able to extend the...
@mirus-ua Thanks for the review. > I don't understand the reason why we replace `HTMLDivElemnt` with HTMLElement that quite generic and may cause problems for the extension in the future...
> `prop: Type | null | undefined` can be simplified to `prop?: Type | null` I use `args: Type | undefined` and `args?: Type` explicitly. The former always requires an...
I am now interested in this issue. (I would like to respond to it if I have time.) However, I am concerned that Intl does not allow specifying strings in...
https://github.com/tc39/ecma402/issues/374
In date-fns, the format to return the year and date is not facilitated. On the other hand, the browser standard toLocaleDateString seems useful. If dateFormatCalendar is unspecified, we believe we...
@mikejcoop I tried with codesandbox but could not reproduce. https://codesandbox.io/p/sandbox/react-datepicker-4946-mp4yl5?file=%2Fsrc%2FApp.tsx%3A4%2C1 Can you provide the code to reproduce it?
@lordenas Would this page be helpful? (It seems to be a glitch in ts.) https://stackoverflow.com/questions/78641187/why-is-excludscrollbar-property-required-for-react-datepicker When reproducing it at hand, I forked codesandbox, but the type error is not occurring...
I created a PR for type modification. #4932