blob: aae553da7766faab70e4f71231a2bb05f857ee2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"
export const ICU4XIsoTimeZoneFormat_js_to_rust = {
"Basic": 0,
"Extended": 1,
"UtcBasic": 2,
"UtcExtended": 3,
};
export const ICU4XIsoTimeZoneFormat_rust_to_js = {
[0]: "Basic",
[1]: "Extended",
[2]: "UtcBasic",
[3]: "UtcExtended",
};
export const ICU4XIsoTimeZoneFormat = {
"Basic": "Basic",
"Extended": "Extended",
"UtcBasic": "UtcBasic",
"UtcExtended": "UtcExtended",
};
|