UNPKG

md-editor-rt

Version:

Markdown editor for react, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...

9 lines (8 loc) 318 B
import { MouseEvent, ReactNode } from 'react'; export interface NormalFooterToolbarProps { children: ReactNode; onClick?: (e: MouseEvent) => void; disabled?: boolean; } declare const NormalFooterToolbar: (props: NormalFooterToolbarProps) => import("react").JSX.Element; export default NormalFooterToolbar;