generated from templates/typescript-types
4 lines
137 B
TypeScript
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}`;
|