types.ts: Prefix the exported SvelteComponent type with typeof (#1306)

This commit is contained in:
carlosmintfan 2025-01-16 14:54:52 -03:00 committed by GitHub
parent 27906be3b3
commit c12657b004
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,4 +20,4 @@ type IconSlots = {
default: {};
};
export type Icon = SvelteComponent<IconProps, IconEvents, IconSlots>;
export type Icon = typeof SvelteComponent<IconProps, IconEvents, IconSlots>;