Add a type for the fuel card representation

This commit is contained in:
Oliver-Akins 2022-01-09 00:30:47 -06:00
parent ec37881de7
commit 15da1158c7
2 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,6 @@
export interface FuelCard {
magnitude: number;
symbol: string;
name: string;
type: "movement" | "stationary";
}