library-ts/browser/i18n/RegionCode.ts

18 lines
244 B
TypeScript
Raw Normal View History

2025-03-08 12:22:18 +00:00
export type DE = "DE";
export type UK = "UK";
export type US = "US";
export type RegionCode =
DE |
UK |
US
;
export class RegionCodes
{
static readonly DE:DE = "DE";
static readonly UK:UK = "UK";
static readonly US:US = "US";
}