20 lines
414 B
JavaScript
20 lines
414 B
JavaScript
import wasm from "./diplomat-wasm.mjs"
|
|
import * as diplomatRuntime from "./diplomat-runtime.mjs"
|
|
|
|
export const ICU4XWeekRelativeUnit_js_to_rust = {
|
|
"Previous": 0,
|
|
"Current": 1,
|
|
"Next": 2,
|
|
};
|
|
|
|
export const ICU4XWeekRelativeUnit_rust_to_js = {
|
|
[0]: "Previous",
|
|
[1]: "Current",
|
|
[2]: "Next",
|
|
};
|
|
|
|
export const ICU4XWeekRelativeUnit = {
|
|
"Previous": "Previous",
|
|
"Current": "Current",
|
|
"Next": "Next",
|
|
};
|