summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XBidiDirection.js
blob: 6e68a915987b31428194c2b7ebaaec0307e7a1cf (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 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",
};