svelte2tsx 0.7.20 → 0.7.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte2tsx",
3
- "version": "0.7.20",
3
+ "version": "0.7.21",
4
4
  "description": "Convert Svelte components to TSX for type checking",
5
5
  "author": "David Pershouse",
6
6
  "license": "MIT",
@@ -207,7 +207,7 @@ declare type ATypedSvelteComponent = {
207
207
  */
208
208
  $$slot_def: any;
209
209
 
210
- $on(event: string, handler: ((e: any) => any) | null | undefined): () => void;
210
+ $on(event: string, handler: any): () => void;
211
211
  }
212
212
  /**
213
213
  * Ambient type only used for intellisense, DO NOT USE IN YOUR PROJECT.