1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"
export const ICU4XDisplayNamesStyle_js_to_rust = {
"Auto": 0,
"Narrow": 1,
"Short": 2,
"Long": 3,
"Menu": 4,
};
export const ICU4XDisplayNamesStyle_rust_to_js = {
[0]: "Auto",
[1]: "Narrow",
[2]: "Short",
[3]: "Long",
[4]: "Menu",
};
export const ICU4XDisplayNamesStyle = {
"Auto": "Auto",
"Narrow": "Narrow",
"Short": "Short",
"Long": "Long",
"Menu": "Menu",
};
|