blob: ec777aa3ebaf77761f569e72659a95e1344450d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* The sign of a FixedDecimal, as shown in formatting.
* See the {@link https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.Sign.html Rust documentation for `Sign`} for more information.
*/
export enum ICU4XFixedDecimalSign {
/**
* No sign (implicitly positive, e.g., 1729).
*/
None = 'None',
/**
* A negative sign, e.g., -1729.
*/
Negative = 'Negative',
/**
* An explicit positive sign, e.g., +1729.
*/
Positive = 'Positive',
}
|