Skip to main content
type alias Temporal.ToStringPrecisionOptions

Options for outputting precision in toString() on types with seconds

definition: { fractionalSecondDigits?:
| "auto"
| 0
| 1
| 2
| 3
| 4
| 5
| 6
| 7
| 8
| 9
; smallestUnit?: SmallestUnit<
| "minute"
| "second"
| "millisecond"
| "microsecond"
| "nanosecond"
>; roundingMode?: RoundingMode; }