File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import type { SvelteComponent } from 'svelte' ;
2
2
import { ComponentCollection } from './components.js' ;
3
3
declare global {
4
- function resolveSvelteComponent ( name : string ) : typeof SvelteComponent ;
4
+ function resolveSvelteComponent ( name : string ) : typeof SvelteComponent < any > ;
5
5
interface Window {
6
- resolveSvelteComponent ( name : string ) : typeof SvelteComponent ;
6
+ resolveSvelteComponent ( name : string ) : typeof SvelteComponent < any > ;
7
7
}
8
8
}
9
9
export declare function registerSvelteControllerComponents ( svelteComponents ?: ComponentCollection ) : void ;
Original file line number Diff line number Diff line change 1
1
/// <reference types="webpack-env" />
2
2
import type { SvelteComponent } from 'svelte' ;
3
3
declare global {
4
- function resolveSvelteComponent ( name : string ) : typeof SvelteComponent ;
4
+ function resolveSvelteComponent ( name : string ) : typeof SvelteComponent < any > ;
5
5
interface Window {
6
- resolveSvelteComponent ( name : string ) : typeof SvelteComponent ;
6
+ resolveSvelteComponent ( name : string ) : typeof SvelteComponent < any > ;
7
7
}
8
8
}
9
9
export declare function registerSvelteControllerComponents ( context : __WebpackModuleApi . RequireContext ) : void ;
You can’t perform that action at this time.
0 commit comments