P5 7617 cleanup market and locale (#10)

* Minor fixes

* Cleanup with adding Locale type

* Add locales to test
This commit is contained in:
Niklas Fondberg
2021-08-12 10:51:02 +02:00
committed by GitHub
parent 7047fe9851
commit 58ed7fbf6a
10 changed files with 115 additions and 44 deletions
@@ -5,3 +5,10 @@ export interface Market {
currency: string;
priceAdjustment: number;
}
export interface Locale {
id: number;
value: string;
fallbackId: number;
name: string;
}