1
- /* eslint-disable @typescript-eslint/no-explicit-any */
1
+ /* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-redundant-type-constituents */
2
2
import type * as Svelte from 'svelte'
3
3
4
- type IS_MODERN_SVELTE = any extends Svelte . Component ? false : true
4
+ type IS_MODERN_SVELTE = Svelte . Component extends ( ...args : any [ ] ) => any
5
+ ? true
6
+ : false
5
7
6
8
/** A compiled, imported Svelte component. */
7
9
export type Component <
@@ -14,21 +16,21 @@ export type Component<
14
16
/**
15
17
* The type of an imported, compiled Svelte component.
16
18
*
17
- * In Svelte 4, this was the Svelte component class' type.
18
19
* In Svelte 5, this distinction no longer matters.
20
+ * In Svelte 4, this is the Svelte component class constructor.
19
21
*/
20
- export type ComponentType < C > = C extends Svelte . SvelteComponent
21
- ? Svelte . ComponentType < C >
22
- : C
22
+ export type ComponentType < C > = IS_MODERN_SVELTE extends true
23
+ ? C
24
+ : new ( ... args : any [ ] ) => C
23
25
24
26
/** The props of a component. */
25
27
export type Props < C extends Component < any , any > > = Svelte . ComponentProps < C >
26
28
27
29
/**
28
30
* The exported fields of a component.
29
31
*
30
- * In Svelte 4, this is simply the instance of the component class.
31
32
* In Svelte 5, this is the set of variables marked as `export`'d.
33
+ * In Svelte 4, this is simply the instance of the component class.
32
34
*/
33
35
export type Exports < C > = C extends Svelte . SvelteComponent
34
36
? C
0 commit comments