UNPKG

udhr

Version:

Universal Declaration of Human Rights

66 lines 1.25 kB
/** * @typedef Info * @property {string} bcp47 * BCP 47 language tag. * @property {string} code * Code of encoding. * @property {'ltr' | 'rtl' | 'ttb'} direction * Direction. * @property {string} iso6393 * ISO 639-3 code. * @property {number} latitude * Latitude. * @property {number} longitude * Longitude. * @property {string} name * Name of language. * @property {string} [ohchr] * Link or code. * @property {1 | 2 | 3 | 4 | 5} stage * Stage of encoding. */ /** * Universal Declaration of Human Rights. * * @type {ReadonlyArray<Info>} */ export const udhr: ReadonlyArray<Info>; export type Info = { /** * BCP 47 language tag. */ bcp47: string; /** * Code of encoding. */ code: string; /** * Direction. */ direction: "ltr" | "rtl" | "ttb"; /** * ISO 639-3 code. */ iso6393: string; /** * Latitude. */ latitude: number; /** * Longitude. */ longitude: number; /** * Name of language. */ name: string; /** * Link or code. */ ohchr?: string; /** * Stage of encoding. */ stage: 1 | 2 | 3 | 4 | 5; }; //# sourceMappingURL=index.d.ts.map