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 ICU4XCollatorMaxVariable_js_to_rust = {
"Auto": 0,
"Space": 1,
"Punctuation": 2,
"Symbol": 3,
"Currency": 4,
};
export const ICU4XCollatorMaxVariable_rust_to_js = {
[0]: "Auto",
[1]: "Space",
[2]: "Punctuation",
[3]: "Symbol",
[4]: "Currency",
};
export const ICU4XCollatorMaxVariable = {
"Auto": "Auto",
"Space": "Space",
"Punctuation": "Punctuation",
"Symbol": "Symbol",
"Currency": "Currency",
};
|