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...
14 lines (13 loc) • 395 B
TypeScript
import { MouseEvent, ReactNode } from 'react';
export interface NormalToolbarProps {
title?: string;
children?: ReactNode;
/**
* @deprecated 使用children代替
*/
trigger?: ReactNode;
onClick: (e: MouseEvent) => void;
disabled?: boolean;
}
declare const NormalToolbar: (props: NormalToolbarProps) => import("react").JSX.Element;
export default NormalToolbar;