kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
19 lines (18 loc) • 628 B
TypeScript
import React, { Component } from 'react';
declare type ClickOutsideCloseDropdownProps = {
show: boolean;
type: string;
className: string;
onClose: (e: Event) => void;
children?: React.ReactNode;
};
declare class ClickOutsideCloseDropdown extends Component<ClickOutsideCloseDropdownProps> {
static defaultProps: {
show: boolean;
type: string;
};
handleClickOutside: (e: Event) => void;
render(): React.JSX.Element;
}
declare const _default: import("react-onclickoutside").WrapperClass<ClickOutsideCloseDropdownProps, typeof ClickOutsideCloseDropdown>;
export default _default;