kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
9 lines (8 loc) • 324 B
TypeScript
import React from 'react';
import type { TippyProps } from '@tippyjs/react';
/**
* Lazy mounting tippy content
* https://gist.github.com/atomiks/520f4b0c7b537202a23a3059d4eec908
*/
declare const LazyTippy: React.ForwardRefExoticComponent<Omit<TippyProps, "ref"> & React.RefAttributes<unknown>>;
export default LazyTippy;