svelte2tsx
Advanced tools
Comparing version 0.4.10 to 0.4.11
@@ -58,3 +58,3 @@ export interface SvelteCompiledToTsx { | ||
export interface EmitDtsConig { | ||
export interface EmitDtsConfig { | ||
/** | ||
@@ -78,2 +78,6 @@ * Where to output the declaration files | ||
// to make typo fix non-breaking, continue to export the old name but mark it as deprecated | ||
/**@deprecated*/ | ||
export interface EmitDtsConig extends EmitDtsConfig {} /* eslint-disable-line @typescript-eslint/no-empty-interface */ | ||
/** | ||
@@ -85,2 +89,2 @@ * Searches for a jsconfig or tsconfig starting at `root` and emits d.ts files | ||
*/ | ||
export function emitDts(config: EmitDtsConig): Promise<void>; | ||
export function emitDts(config: EmitDtsConfig): Promise<void>; |
{ | ||
"name": "svelte2tsx", | ||
"version": "0.4.10", | ||
"version": "0.4.11", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -5,0 +5,0 @@ "author": "David Pershouse", |
@@ -105,3 +105,3 @@ /// <reference lib="dom" /> | ||
oninvalid?: EventHandler<Event, T> | undefined; | ||
onbeforeinput?: EventHandler<Event, T> | undefined; | ||
onbeforeinput?: EventHandler<InputEvent, T> | undefined; | ||
@@ -108,0 +108,0 @@ // Image Events |
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
507108
12182