svelte2tsx
Advanced tools
Comparing version 0.1.78 to 0.1.79
{ | ||
"name": "svelte2tsx", | ||
"version": "0.1.78", | ||
"version": "0.1.79", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -5,0 +5,0 @@ "author": "David Pershouse", |
@@ -253,5 +253,8 @@ /** | ||
crossorigin?: string; | ||
currenttime?: number; | ||
data?: string; | ||
datetime?: string; | ||
default?: boolean; | ||
defaultmuted?: boolean; | ||
defaultplaybackrate?: number; | ||
defer?: boolean; | ||
@@ -348,2 +351,3 @@ dir?: string; | ||
value?: string | string[] | number; | ||
volume?: number; | ||
width?: number | string; | ||
@@ -406,4 +410,4 @@ wmode?: string; | ||
role?: string; | ||
tabIndex?: number; | ||
crossOrigin?: "anonymous" | "use-credentials" | ""; | ||
tabindex?: number; | ||
crossorigin?: "anonymous" | "use-credentials" | ""; | ||
@@ -471,4 +475,4 @@ // SVG Specific attributes | ||
filterUnits?: number | string; | ||
floodColor?: number | string; | ||
floodOpacity?: number | string; | ||
"flood-color"?: number | string; | ||
"flood-opacity"?: number | string; | ||
focusable?: number | string; | ||
@@ -475,0 +479,0 @@ "font-family"?: string; |
@@ -108,2 +108,3 @@ declare module '*.svelte' { | ||
declare function __sveltets_ensureType<T>(type: AConstructorTypeOf<T>, el: T): {}; | ||
declare function __sveltets_ctorOf<T>(type: T): AConstructorTypeOf<T>; | ||
declare function __sveltets_instanceOf<T>(type: AConstructorTypeOf<T>): T; | ||
@@ -110,0 +111,0 @@ declare function __sveltets_allPropsType(): SvelteAllProps |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
903399
20096