Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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; }