19 lines
No EOL
338 B
TypeScript
19 lines
No EOL
338 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/decimal/options/enum.GroupingStrategy.html Rust documentation for `GroupingStrategy`} for more information.
|
|
*/
|
|
export enum ICU4XFixedDecimalGroupingStrategy {
|
|
/**
|
|
*/
|
|
Auto = 'Auto',
|
|
/**
|
|
*/
|
|
Never = 'Never',
|
|
/**
|
|
*/
|
|
Always = 'Always',
|
|
/**
|
|
*/
|
|
Min2 = 'Min2',
|
|
} |