jsx-dom-runtime
Advanced tools
Comparing version 0.55.0 to 0.55.1
@@ -45,5 +45,3 @@ /// <reference lib="dom" /> | ||
export interface FunctionComponent<P = {}, T extends JSX.Element = JSX.Element> { | ||
(props: PropsWithChildren<P>): T | null | ||
} | ||
export type FunctionComponent<P = {}, T extends JSX.Element = JSX.Element> = JSX.FC<P, T> | ||
export { FunctionComponent as FC }; | ||
@@ -958,2 +956,6 @@ | ||
interface FC<P = {}, T extends Element = Element> { | ||
(props: PropsWithChildren<P>): T | null | ||
} | ||
interface HTMLAnchorElementAttributes extends HTMLAttributes<HTMLAnchorElement> { | ||
@@ -960,0 +962,0 @@ download?: any; |
{ | ||
"name": "jsx-dom-runtime", | ||
"version": "0.55.0", | ||
"version": "0.55.1", | ||
"description": "A tiny in 500 bytes library to JSX syntax templates for DOM. Support HTML, SVG and MathML tags", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85785
2257