react-markdown-editor-lite
Version:
a light-weight Markdown editor based on React
11 lines (10 loc) • 311 B
TypeScript
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;