(locale: string, opts: DurationFormatOptions)
| 80 | } |
| 81 | |
| 82 | toLocaleString(locale: string, opts: DurationFormatOptions) { |
| 83 | return new DurationFormat(locale, opts).format(this) |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | export function applyDuration(date: Date | number, duration: Duration): Date { |
no test coverage detected