/** NumericCurrency so that we don't have to convert from the string Currency all over the place */
export interface NumericCurrency {
  currency: string;
  amount: number | undefined;
}
