Add a type for the colour object

This commit is contained in:
Oliver-Akins 2021-12-24 03:22:15 -07:00
parent 2530e90774
commit 36487500e1

5
web-svelte/src/types/colour.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
interface Colour {
name: string;
hex: string;
taken: boolean;
}