Skip to content

Type Alias: LanguageCode

ts
type LanguageCode = 
  | "en-us"
  | "fr-fr"
  | "vi-vn"
  | "th-th"
  | "tr-tr"
  | "ru-ru"
  | "es-es"
  | "pt-br"
  | "ko-kr"
  | "ja-jp"
  | "zh-cn"
  | "zh-tw"
  | "de-de"
  | "pl-pl"
  | "it-it"
  | "id-id"
  | "";

Defined in: src/types/universes.ts:146