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...

16 lines (15 loc) 441 B
import { ReactNode } from 'react'; export interface DropdownToolbarProps { title?: string; visible: boolean; /** * @deprecated 使用children代替 */ trigger?: ReactNode; onChange: (visible: boolean) => void; overlay: ReactNode; children?: ReactNode; disabled?: boolean; } declare const DropdownToolbar: (props: DropdownToolbarProps) => import("react").JSX.Element; export default DropdownToolbar;