manage and cleanup some types

This commit is contained in:
3zachm 2023-01-28 01:46:11 -08:00
commit 1393df6fd0
9 changed files with 175 additions and 141 deletions
interfaces

5
interfaces/UserBadge.ts Normal file
View file

@ -0,0 +1,5 @@
export default interface UserBadge {
name: string;
color: string;
priority: number;
}