24 lines
No EOL
425 B
TypeScript
24 lines
No EOL
425 B
TypeScript
|
|
/**
|
|
|
|
* ECMA-402 compatible sign display preference.
|
|
|
|
* See the {@link https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.SignDisplay.html Rust documentation for `SignDisplay`} for more information.
|
|
*/
|
|
export enum ICU4XFixedDecimalSignDisplay {
|
|
/**
|
|
*/
|
|
Auto = 'Auto',
|
|
/**
|
|
*/
|
|
Never = 'Never',
|
|
/**
|
|
*/
|
|
Always = 'Always',
|
|
/**
|
|
*/
|
|
ExceptZero = 'ExceptZero',
|
|
/**
|
|
*/
|
|
Negative = 'Negative',
|
|
} |