summaryrefslogtreecommitdiff
path: root/packages/langlib/src/iso/index.ts
blob: 60467e07f66c1162b5a9b204933a84c0f670485e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { ISO_6393_3 } from "../types";
import { iso6393 } from "./iso6393";
import { iso6393To1 } from "./iso6393-to-1";
import { iso6393To2B } from "./iso6393-to-2b";
import { iso6393To2T } from "./iso6393-to-2t";
import { iso15924 } from "./iso15924";
import type { ISO_15924_CODE } from "./iso15924";

export { iso6393, iso6393To1, iso6393To2B, iso6393To2T, iso15924 };
type ISO_15924 = {
  name: string;
  numeric: string;
  pva?: string;
  date: string;
  code: ISO_15924_CODE;
};
export type { ISO_15924, ISO_15924_CODE, ISO_6393_3 };