-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the jsx callback type type to any #4
Conversation
This change makes the automatic runtime of some frameworks assignable to the runtime `hast-util-to-jsx-runtime` expects.
@remcohaszing this feels a bit like a JSX typing bug in preact? Would this be something to address upstream? To the question on tooling, I'm for keeping |
The Preact types are completely correct. This is an assignability issue caused by the Anything is assignable to A function that accepts type UnknownFn = (arg: unknown) => unknown
type StringFn = (arg: string) => unknown
declare let unknownFn: UnknownFn
declare let stringFn: StringFn
// This is a type error
unknownFn = stringFn
stringFn = unknownFn The situation for |
IMO typescript-eslint is better suited for this. I think supports pretty much all features we use from But I don’t want to focus on that as part of this PR. |
Is this issue about compatibility with Preact? Which frameworks don’t work? That’s quite possible but perhaps they need to be tested, and perhaps we can solve it some other way? Here’s the Preact types: https://github.com/preactjs/preact/blob/main/jsx-runtime/src/index.d.ts |
|
See also #6. |
Closed in favor of #6. |
This comment has been minimized.
This comment has been minimized.
React 19 no longer defined `JSX`. It prefers users to use `React.JSX` instead. Without it, it becomes impossible to infer what the types of props for particular components are, what the know tag names are, what the “result” of `jsx()` is. This PR is a patch to prevent errors when `JSX` is not there while still *allowing* `JSX` to exist and for this package to be typed nicely. Related-to GH-4. Closes GH-6.
Initial checklist
Description of changes
This change makes the automatic runtime of some frameworks assignable to the runtime
hast-util-to-jsx-runtime
expects.For example, see what happens if the type of
type
is toggled in this playgroundtype-coverage
fails for this PR. I see 2 possible solutions:Jsx
andJsxDev
definitions into a.d.ts
file, so we can add atype-coverage:ignore-next-line
comment.type-coverage
. Personally I don’t find it very useful anyway.