react-markdown-editor-lite
Version:
a light-weight Markdown editor based on React
32 lines (31 loc) • 794 B
TypeScript
import Editor from './editor';
import { PluginComponent } from './plugins/Plugin';
import type { PluginProps } from './plugins/Plugin';
import DropList from './components/DropList/index';
export { DropList };
export { PluginComponent };
export type { PluginProps };
export { default as getDecorated } from './utils/decorate';
export declare const Plugins: {
Header: any;
FontBold: any;
FontItalic: any;
FontUnderline: any;
FontStrikethrough: any;
ListUnordered: any;
ListOrdered: any;
BlockQuote: any;
BlockWrap: any;
BlockCodeInline: any;
BlockCodeBlock: any;
Table: any;
Image: any;
Link: any;
Clear: any;
Logger: any;
ModeToggle: any;
FullScreen: any;
AutoResize: any;
TabInsert: any;
};
export default Editor;