# PluralUnit

`import { PluralUnit } from "destack:time";`

Temporal plural unit.

```ds title="PluralUnit"
export type PluralUnit<T: DateTimeUnit> = T extends "year" ? "years" : T extends "month" ? "months" : T extends "week" ? "weeks" : T extends "day" ? "days" : T extends "hour" ? "hours" : T extends "minute" ? "minutes" : T extends "second" ? "seconds" : T extends "millisecond" ? "milliseconds" : T extends "microsecond" ? "microseconds" : T extends "nanosecond" ? "nanoseconds" : never
```

[language/library/src/time/unit.ds:29:49](https://github.com/destack-sh/destack/blob/main/language/library/src/time/unit.ds#L29-L49)
