UNPKG

ember-intl

Version:

Internationalization for Ember projects

13 lines (10 loc) 356 B
import type { IntlShape } from '@formatjs/intl'; export type FormatRelativeTimeParameters = Parameters< IntlShape<string>['formatRelativeTime'] >; export function formatRelativeTime( intlShape: IntlShape, ...[value, unit, formatOptions]: FormatRelativeTimeParameters ): string { return intlShape.formatRelativeTime(value, unit, formatOptions); }