File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,15 @@ export interface RenderOptions<V extends Vue, S = {}>
4646 baseElement ?: Element
4747}
4848
49- type ConfigurationArgs = [
50- localVue : typeof Vue ,
51- // eslint-disable-next-line @typescript-eslint/no-explicit-any
52- store : Store < any > ,
53- router : Router ,
54- ]
55-
5649export type ConfigurationCallback < V extends Vue > =
57- | ( ( ...args : ConfigurationArgs ) => Partial < ThisTypedMountOptions < V > > )
58- | ( ( ...args : ConfigurationArgs ) => void )
50+ | ( (
51+ localVue : typeof Vue ,
52+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
53+ store : Store < any > ,
54+ router : Router ,
55+ ) => Partial < ThisTypedMountOptions < V > > )
56+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
57+ | ( ( localVue : typeof Vue , store : Store < any > , router : Router ) => void )
5958
6059export function render < V extends Vue > (
6160 TestComponent : VueClass < V > | ComponentOptions < V > ,
You can’t perform that action at this time.
0 commit comments