interface Currency {
  displayName: string;
  numericCode: number;
  defaultFractionDigits: number;
  subUnit: number;
  symbolSpaced: boolean;
  symbolPosition: "after" | "before";
  symbol: string;
  isoCode: "GBP";
};

const GBP: Currency = Object.freeze({
  "displayName": "Pound Sterling",
  "numericCode": 826,
  "defaultFractionDigits": 2,
  "subUnit": 100,
  "symbolSpaced": false,
  "symbolPosition": "before",
  "isoCode": "GBP",
  "symbol": "£"
});

export { GBP };
