Other

UUID

A universally unique identifier (v4).

type UUID = string;

LocalizedString

A map-like string-index-structure of localized values, where key is either an ISO 639-1 langauge code or * (fallabck value).

type LocalizedString = { [key: string]: string };

DateTime

A date/time representation either in the format of a Date object a UNIX timestamp (number) or ISO 8601 date string (string).

type DateTime = Date | number | string;

Last updated