Prefix interfaces for data with a capital I

This commit is contained in:
Oliver-Akins 2022-01-03 18:40:09 -07:00
parent fae2fe3837
commit dbedecc900
3 changed files with 12 additions and 2 deletions

View file

@ -1,4 +1,4 @@
export interface Colour {
export interface IColour {
name: string;
hex: string;
}

View file

@ -0,0 +1,4 @@
export interface ISpaceship {
name: string;
id: string;
}