svelte2tsx
Advanced tools
Comparing version 0.1.182 to 0.1.183
{ | ||
"name": "svelte2tsx", | ||
"version": "0.1.182", | ||
"version": "0.1.183", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -48,4 +48,3 @@ "author": "David Pershouse", | ||
"dev": "rollup -c -w", | ||
"test": "mocha test/test.ts", | ||
"pretest": "rollup -c rollup.config.test.js" | ||
"test": "mocha test/test.ts" | ||
}, | ||
@@ -52,0 +51,0 @@ "files": [ |
@@ -747,2 +747,8 @@ /// <reference lib="dom" /> | ||
interface SvelteKitAnchorProps { | ||
// transformed from sveltekit:noscroll so it should be camel case | ||
sveltekitNoscroll?: true; | ||
sveltekitPrefetch?: true; | ||
} | ||
interface SvelteMediaTimeRange { | ||
@@ -786,3 +792,3 @@ start: number; | ||
// HTML | ||
a: HTMLProps<HTMLAnchorElement> & SapperAnchorProps; | ||
a: HTMLProps<HTMLAnchorElement> & SapperAnchorProps & SvelteKitAnchorProps; | ||
abbr: HTMLProps<HTMLElement>; | ||
@@ -789,0 +795,0 @@ address: HTMLProps<HTMLElement>; |
Sorry, the diff of this file is too big to display
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
392381
9994