See `FORMAT` and `toFormat`.
| 304 | |
| 305 | /** See `FORMAT` and `toFormat`. */ |
| 306 | interface Format { |
| 307 | |
| 308 | /** The string to prepend. */ |
| 309 | prefix?: string; |
| 310 | |
| 311 | /** The negative sign. */ |
| 312 | negativeSign?: string; |
| 313 | |
| 314 | /** The positive sign. */ |
| 315 | positiveSign?: string; |
| 316 | |
| 317 | /** The decimal separator. */ |
| 318 | decimalSeparator?: string; |
| 319 | |
| 320 | /** The grouping separator of the integer part. */ |
| 321 | groupSeparator?: string; |
| 322 | |
| 323 | /** The primary grouping size of the integer part. */ |
| 324 | groupSize?: number; |
| 325 | |
| 326 | /** The secondary grouping size of the integer part. */ |
| 327 | secondaryGroupSize?: number; |
| 328 | |
| 329 | /** The grouping separator of the fraction part. */ |
| 330 | fractionGroupSeparator?: string; |
| 331 | |
| 332 | /** The grouping size of the fraction part. */ |
| 333 | fractionGroupSize?: number; |
| 334 | |
| 335 | /** The string to append. */ |
| 336 | suffix?: string; |
| 337 | } |
| 338 | |
| 339 | interface Instance { |
| 340 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…