UNPKG

@uiw/react-md-editor

Version:

A markdown editor with preview, implemented with React.js and TypeScript.

6 lines (5 loc) 314 B
import { ICommand, ICommandChildCommands, ICommandChildHandle } from './'; export declare type GroupOptions = Omit<ICommand<string>, 'children'> & { children?: ICommandChildHandle['children']; }; export declare const group: (arr: ICommandChildCommands['children'], options?: GroupOptions) => ICommand<string>;