20 lines
373 B
JavaScript
20 lines
373 B
JavaScript
import wasm from "./diplomat-wasm.mjs"
|
|
import * as diplomatRuntime from "./diplomat-runtime.mjs"
|
|
|
|
export const ICU4XBidiDirection_js_to_rust = {
|
|
"Ltr": 0,
|
|
"Rtl": 1,
|
|
"Mixed": 2,
|
|
};
|
|
|
|
export const ICU4XBidiDirection_rust_to_js = {
|
|
[0]: "Ltr",
|
|
[1]: "Rtl",
|
|
[2]: "Mixed",
|
|
};
|
|
|
|
export const ICU4XBidiDirection = {
|
|
"Ltr": "Ltr",
|
|
"Rtl": "Rtl",
|
|
"Mixed": "Mixed",
|
|
};
|