Skip to content

Type Alias: DiffUnit

ts
type DiffUnit = 
  | "years"
  | "months"
  | "weeks"
  | "days"
  | "hours"
  | "minutes"
  | "seconds"
  | "milliseconds";

Released under the MIT License.