summaryrefslogtreecommitdiff
path: root/packages/lang/src/iso/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/lang/src/iso/index.ts')
-rw-r--r--packages/lang/src/iso/index.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/lang/src/iso/index.ts b/packages/lang/src/iso/index.ts
deleted file mode 100644
index 60467e0..0000000
--- a/packages/lang/src/iso/index.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-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 };