UNPKG

400 BTypeScriptView Raw
1import * as React from 'react';
2import { FormatRelativeTimeOptions } from '@formatjs/intl';
3export interface Props extends FormatRelativeTimeOptions {
4 value?: number;
5 unit?: Intl.RelativeTimeFormatUnit;
6 updateIntervalInSeconds?: number;
7 children?(value: string): React.ReactElement | null;
8}
9declare const FormattedRelativeTime: React.FC<Props>;
10export default FormattedRelativeTime;