v0.16.1 - less is more
-
Make the property list to
ElementInternalsoptional for type definitions. 7c276d6Before:
@element class JuicyElement extends Element { static elementName = 'juicy-el' // ...This class does not define new attributes.... } declare module 'solid-js' { namespace JSX { interface IntrinsicElements { [JuicyElement.elementName]: ElementAttributes<JuicyElement, keyof {}> } } }
After:
// ...same class... declare module 'solid-js' { namespace JSX { interface IntrinsicElements { [JuicyElement.elementName]: ElementAttributes<JuicyElement> // <--- no second arg } } }