UNPKG

react-markdown-editor-lite

Version:
24 lines (23 loc) 526 B
/// <reference types="react" /> import { PluginComponent, PluginProps } from '../Plugin'; interface State { show: boolean; } interface Props extends PluginProps { config: { maxRow?: number; maxCol?: number; }; } export default class Table extends PluginComponent<State, Props> { static pluginName: string; static defaultConfig: { maxRow: number; maxCol: number; }; constructor(props: any); private show; private hide; render(): JSX.Element; } export {};