Skip to content

Commit

Permalink
temporarily relax event type (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlyu123 authored Jul 17, 2020
1 parent 17bfd6e commit 4e11f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte2tsx/svelte-shims.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ declare var process: NodeJS.Process & { browser: boolean }
declare function __sveltets_ensureAnimation<U extends any[]>(animation: SvelteAnimation<U>, ...args: U): any;
declare function __sveltets_ensureAction<U extends any[]>(action: SvelteAction<U>, ...args: U): any;
declare function __sveltets_ensureTransition<U extends any[]>(transition: SvelteTransition<U>, ...args: U): any;
declare function __sveltets_ensureFunction(expression: (e: Event) => unknown ):any;
declare function __sveltets_ensureFunction(expression: (e: Event & { detail?: any }) => unknown ) : any;
declare function __sveltets_ensureType<T>(type: AConstructorTypeOf<T>, el: T): any;
declare function __sveltets_instanceOf<T>(type: AConstructorTypeOf<T>): T;
declare function __sveltets_allPropsType(): SvelteAllProps
Expand Down

0 comments on commit 4e11f13

Please sign in to comment.