@uiw/react-md-editor
Version:
A markdown editor with preview, implemented with React.js and TypeScript.
6 lines (5 loc) • 314 B
TypeScript
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>;