20 lines
457 B
JavaScript
20 lines
457 B
JavaScript
import wasm from "./diplomat-wasm.mjs"
|
|
import * as diplomatRuntime from "./diplomat-runtime.mjs"
|
|
|
|
export const ICU4XCollatorAlternateHandling_js_to_rust = {
|
|
"Auto": 0,
|
|
"NonIgnorable": 1,
|
|
"Shifted": 2,
|
|
};
|
|
|
|
export const ICU4XCollatorAlternateHandling_rust_to_js = {
|
|
[0]: "Auto",
|
|
[1]: "NonIgnorable",
|
|
[2]: "Shifted",
|
|
};
|
|
|
|
export const ICU4XCollatorAlternateHandling = {
|
|
"Auto": "Auto",
|
|
"NonIgnorable": "NonIgnorable",
|
|
"Shifted": "Shifted",
|
|
};
|