@uiw/react-md-editor
Version:
A markdown editor with preview, implemented with React.js and TypeScript.
16 lines (15 loc) • 821 B
TypeScript
declare module '@uiw/react-md-editor/nohighlight' {
import MDEditor from '@uiw/react-md-editor/esm/Editor.nohighlight';
import * as commands from '@uiw/react-md-editor/esm/commands';
import * as MarkdownUtil from '@uiw/react-md-editor/esm/utils/markdownUtils';
export { headingExecute } from '@uiw/react-md-editor/esm/commands/title';
export * from '@uiw/react-md-editor/esm/commands';
export * from '@uiw/react-md-editor/esm/commands/group';
export * from '@uiw/react-md-editor/esm/utils/markdownUtils';
export * from '@uiw/react-md-editor/esm/utils/InsertTextAtPosition';
export * from '@uiw/react-md-editor/esm/Editor.nohighlight';
export * from '@uiw/react-md-editor/esm/Context';
export * from '@uiw/react-md-editor/esm/Types';
export { MarkdownUtil, commands };
export default MDEditor;
}