box-ui-elements
Version:
Box UI Elements
27 lines (25 loc) • 815 B
Flow
// @flow
/**
* Flowtype definitions for ActivityDatestamp.tsx
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.10.0
*/
import * as React from 'react';
import ReadableTime from '../../../../../components/time/ReadableTime';
declare export var MILLISECONDS_PER_YEAR: any; // /* NO PRINT IMPLEMENTED: BinaryExpression */ any
declare type ReadableTimeProps = {
allowFutureTimestamps?: boolean,
alwaysShowTime?: boolean,
intl: any,
relativeThreshold?: number,
showWeekday?: boolean,
timestamp: number,
uppercase?: boolean,
...
};
export type Props = {
date: string | Date | number,
...
} & $Rest<ReadableTimeProps, { ... }>;
declare var ActivityDatestamp: any; // /* NO PRINT IMPLEMENTED: ArrowFunction */ any
declare export default typeof ActivityDatestamp;