UNPKG

react-markdown-editor-lite

Version:
11 lines (10 loc) 311 B
import * as React from 'react'; interface TabMapListProps { value: number; onSelectMapValue?: (mapValue: number) => void; } declare class TabMapList extends React.Component<TabMapListProps, any> { handleSelectMapValue(mapValue: number): void; render(): JSX.Element; } export default TabMapList;