summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XFixedDecimalSignDisplay.d.ts
blob: d3302911a1707788d8a1cfb36834a23d222690a7 (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
/**

 * 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',
}