@uiw/react-md-editor
Version:
A markdown editor with preview, implemented with React.js and TypeScript.
6 lines (5 loc) • 321 B
TypeScript
import { type ICommand, type ICommandChildCommands, type ICommandChildHandle } from './';
export type GroupOptions = Omit<ICommand<string>, 'children'> & {
children?: ICommandChildHandle['children'];
};
export declare const group: (arr: ICommandChildCommands["children"], options?: GroupOptions) => ICommand<string>;