@uiw/react-md-editor
Version:
A markdown editor with preview, implemented with React.js and TypeScript.
12 lines (11 loc) • 316 B
TypeScript
import React from 'react';
import { IProps } from '../../Editor';
import './index.less';
export interface IDragBarProps extends IProps {
height: number;
maxHeight: number;
minHeight: number;
onChange: (value: number) => void;
}
declare const DragBar: React.FC<IDragBarProps>;
export default DragBar;