types/src/locale.d.ts
2023-08-26 13:49:57 -07:00

4 lines
137 B
TypeScript

/** A combined ISO 639-1 language code and ISO 3166-1 alpha-2 country code, like `en-US` */
export type Locale = `${string}-${string}`;