kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
10 lines (9 loc) • 375 B
TypeScript
import React from 'react';
interface FloatingTimeDisplayProps {
currentTime: number | number[];
defaultTimeFormat?: string | null;
timeFormat?: string | null;
timezone?: string | null;
}
export default function FloatingTimeDisplayFactory(): ({ currentTime, defaultTimeFormat, timeFormat, timezone }: FloatingTimeDisplayProps) => React.JSX.Element;
export {};