blob: 5d3c6763184edde3f5bbabe546bbe25ece5b63bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Increment used in a rounding operation.
* See the {@link https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.RoundingIncrement.html Rust documentation for `RoundingIncrement`} for more information.
*/
export enum ICU4XRoundingIncrement {
/**
*/
MultiplesOf1 = 'MultiplesOf1',
/**
*/
MultiplesOf2 = 'MultiplesOf2',
/**
*/
MultiplesOf5 = 'MultiplesOf5',
/**
*/
MultiplesOf25 = 'MultiplesOf25',
}
|