UNPKG

@mini-markdown-rc/editor

Version:
10 lines (9 loc) 279 B
import { FC } from 'react'; import { GlobalConfig } from '../../types/global-config'; interface EditorProps extends GlobalConfig { className?: string; style?: React.CSSProperties; isSyncScroll: boolean; } declare const Editor: FC<EditorProps>; export default Editor;