UNPKG

date-vir

Version:

Easy and explicit dates and times.

13 lines (12 loc) 307 B
import { DurationUnit } from '@date-vir/duration'; import { enumShape, recordShape } from 'object-shape-tester'; /** * A shape definition for `AnyDuration`. * * @category Duration */ export const anyDurationShape = recordShape({ keys: enumShape(DurationUnit), values: -1, partial: true, });