UNPKG

react-markdown-editor-lite

Version:
12 lines (11 loc) 329 B
import * as React from 'react'; interface DropListProps { show: boolean; onClose?: () => void; } declare class DropList extends React.Component<DropListProps, any> { constructor(props: any); handleClose(e: React.MouseEvent<HTMLDivElement, MouseEvent>): void; render(): JSX.Element; } export default DropList;