svelte2tsx
Advanced tools
Comparing version 0.1.95 to 0.1.96
{ | ||
"name": "svelte2tsx", | ||
"version": "0.1.95", | ||
"version": "0.1.96", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -5,0 +5,0 @@ "author": "David Pershouse", |
@@ -82,5 +82,3 @@ /** | ||
/* children?: Children; | ||
innerHTML?: string; | ||
innerText?: string; | ||
textContent?: string; | ||
namespaceURI?: string; | ||
@@ -253,2 +251,12 @@ ref?: ((e: T) => void) | Ref<T>; */ | ||
contenteditable?: "true" | "false" | boolean; | ||
/** | ||
* Elements with the contenteditable attribute support innerHTML and textContent bindings. | ||
*/ | ||
innerhtml?: string; | ||
/** | ||
* Elements with the contenteditable attribute support innerHTML and textContent bindings. | ||
*/ | ||
textcontent?: string; | ||
contextmenu?: string; | ||
@@ -255,0 +263,0 @@ controls?: boolean; |
293500
7438