ember-intl
Version:
Internationalization for Ember projects
10 lines (9 loc) • 316 B
TypeScript
import type { IntlShape } from '@formatjs/intl';
/**
* @deprecated
*/
export type FormatRelativeParameters = Parameters<IntlShape<string>['formatRelativeTime']>;
/**
* @deprecated
*/
export declare function formatRelative(intlShape: IntlShape, ...[value, unit, formatOptions]: FormatRelativeParameters): string;