Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

Language

Representation of a Language Language

export interface Language {
	'active'?: boolean;
	'isocode'?: string;
	'name'?: string;
	'nativeName'?: string;
}

Properties

NameRequiredTypeDescription
activeOptionalbooleantrue/false indicator when the language is active {boolean} Language
isocodeOptionalstringiso code of the language {string} Language
nameOptionalstringname of the language {string} Language
nativeNameOptionalstringname the language in native form {string} Language

On this page