1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-09-03 02:42:55 +02:00

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

View File

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