blob: 407cf14d3397671ca13dace9600c86958803ab1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"
export const ICU4XFixedDecimalSign_js_to_rust = {
"None": 0,
"Negative": 1,
"Positive": 2,
};
export const ICU4XFixedDecimalSign_rust_to_js = {
[0]: "None",
[1]: "Negative",
[2]: "Positive",
};
export const ICU4XFixedDecimalSign = {
"None": "None",
"Negative": "Negative",
"Positive": "Positive",
};
|