DifferenceOptions import { DifferenceOptions } from "destack:time"; Options for Temporal difference methods. export interface DifferenceOptions { smallestUnit: SmallestUnit; largestUnit: LargestUnit; roundingIncrement: float64; roundingMode: "ceil" | "floor" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven"; } language/library/src/time/option.ds:41:53 Members smallestUnit: SmallestUnit Smallest unit to include. largestUnit: LargestUnit Largest unit to include. roundingIncrement: float64 Rounding increment for the smallest unit. roundingMode: "ceil" | "floor" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" Rounding mode.