svelte2tsx
Advanced tools
Comparing version 0.1.66 to 0.1.67
@@ -1,6 +0,11 @@ | ||
type SvelteCompiledToTsx = { | ||
code: string, | ||
map: import("magic-string").SourceMap | ||
export interface SvelteCompiledToTsx { | ||
code: string; | ||
map: import("magic-string").SourceMap; | ||
exportedNames: IExportedNames; | ||
} | ||
export interface IExportedNames { | ||
has(name: string): boolean; | ||
} | ||
export default function svelte2tsx( | ||
@@ -7,0 +12,0 @@ svelte: string, |
{ | ||
"name": "svelte2tsx", | ||
"version": "0.1.66", | ||
"version": "0.1.67", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -5,0 +5,0 @@ "author": "David Pershouse", |
@@ -81,1 +81,12 @@ declare module '*.svelte' { | ||
>(on: SvelteOnAllEvent<T>, event: TEvent): T[TKey]; | ||
declare function __sveltets_awaitThen<T>( | ||
promise: PromiseLike<T>, | ||
onfulfilled: (value: T) => any, | ||
onrejected?: (value: any) => any | ||
): any; | ||
declare function __sveltets_awaitThen<T>( | ||
promise: T, | ||
onfulfilled: (value: T) => any, | ||
onrejected?: (value: never) => any | ||
): any; |
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
895896
19897