UNPKG

timeperiodjs

Version:
10 lines (9 loc) 301 B
export default class Duration { private _duration; constructor(durationInMilliseconds: number); get inMilliseconds(): number; get inSeconds(): number; get inMinutes(): number; get inHours(): number; static getDurationBetween: (from: Date, to: Date) => Duration; }