refactor: use array syntax

This commit is contained in:
Sebin Nyshkim 2022-09-28 01:54:10 +02:00
parent d643ce2646
commit 7bd86d73e6

View file

@ -5,7 +5,7 @@ interface ColorDict {
}
interface Props {
colors: Array<ColorDict>;
colors: ColorDict[];
}
defineProps<Props>();