@@ -38,11 +38,11 @@ type SvelteComponent = import('*.svelte').default
38
38
39
39
declare var process : NodeJS . Process & { browser : boolean }
40
40
41
- declare function __sveltets_ensureAnimation < U extends any [ ] > ( animation : SvelteAnimation < U > , ...args : U ) : any ;
42
- declare function __sveltets_ensureAction < U extends any [ ] > ( action : SvelteAction < U > , ...args : U ) : any ;
43
- declare function __sveltets_ensureTransition < U extends any [ ] > ( transition : SvelteTransition < U > , ...args : U ) : any ;
44
- declare function __sveltets_ensureFunction ( expression : ( e : Event & { detail ?: any } ) => unknown ) : any ;
45
- declare function __sveltets_ensureType < T > ( type : AConstructorTypeOf < T > , el : T ) : any ;
41
+ declare function __sveltets_ensureAnimation < U extends any [ ] > ( animation : SvelteAnimation < U > , ...args : U ) : { } ;
42
+ declare function __sveltets_ensureAction < U extends any [ ] > ( action : SvelteAction < U > , ...args : U ) : { } ;
43
+ declare function __sveltets_ensureTransition < U extends any [ ] > ( transition : SvelteTransition < U > , ...args : U ) : { } ;
44
+ declare function __sveltets_ensureFunction ( expression : ( e : Event & { detail ?: any } ) => unknown ) : { } ;
45
+ declare function __sveltets_ensureType < T > ( type : AConstructorTypeOf < T > , el : T ) : { } ;
46
46
declare function __sveltets_instanceOf < T > ( type : AConstructorTypeOf < T > ) : T ;
47
47
declare function __sveltets_allPropsType ( ) : SvelteAllProps
48
48
declare function __sveltets_restPropsType ( ) : SvelteRestProps
@@ -51,5 +51,6 @@ declare function __sveltets_partial_with_any<T>(obj: T): Partial<T> & SvelteAllP
51
51
declare function __sveltets_with_any < T > ( obj : T ) : T & SvelteAllProps
52
52
declare function __sveltets_store_get < T = any > ( store : SvelteStore < T > ) : T
53
53
declare function __sveltets_any ( dummy : any ) : any ;
54
+ declare function __sveltets_empty ( dummy : any ) : { } ;
54
55
declare function __sveltets_componentType ( ) : AConstructorTypeOf < SvelteComponent >
55
56
declare function __sveltets_invalidate < T > ( getValue : ( ) => T ) : T
0 commit comments