fix: coverage

This commit is contained in:
imccyu
2026-08-09 18:56:29 +08:00
parent 1b1e170c1f
commit 924cfcef95
12 changed files with 46 additions and 28 deletions
+8 -2
View File
@@ -677,7 +677,10 @@ export class SlotCore {
>(
options: BaseOptions<K, EntryKey, D, H, M, N> & { inject?: undefined },
component: C
& SlotComponent<ComposedProps<K, NoInfer<EntryKey>, keyof NoInfer<D> & keyof SlotMap & string, HandleOf<NoInfer<H>>, object, NoInfer<M>, NoInfer<N>>>
& SlotComponent<ComposedProps<
K, NoInfer<EntryKey>, keyof NoInfer<D> & keyof SlotMap & string,
HandleOf<NoInfer<H>>, object, NoInfer<M>, NoInfer<N>
>>
& RendersCheck<C, D>,
): () => void
/**
@@ -702,7 +705,10 @@ export class SlotCore {
>(
options: BaseOptions<K, EntryKey, D, H, M, N> & { inject: (...args: InjectParams<K, H>) => I },
component: C
& SlotComponent<ComposedProps<K, NoInfer<EntryKey>, keyof NoInfer<D> & keyof SlotMap & string, HandleOf<NoInfer<H>>, I, NoInfer<M>, NoInfer<N>>>
& SlotComponent<ComposedProps<
K, NoInfer<EntryKey>, keyof NoInfer<D> & keyof SlotMap & string,
HandleOf<NoInfer<H>>, I, NoInfer<M>, NoInfer<N>
>>
& RendersCheck<C, D>,
): () => void
/* jscpd:ignore-end */