medium-proeditor
Version:
A powerful & customizable Medium-style rich text editor
19 lines • 730 B
TypeScript
import { Feature } from '../../Feature';
import type { PublicMenuitemOptions } from '../../Feature';
export interface HighlightMenuOptions {
/** Bold text format */
bold?: PublicMenuitemOptions | false;
/** Italic text format */
italic?: PublicMenuitemOptions | false;
/** Hyperlinks */
link?: PublicMenuitemOptions | false;
/** Large heading */
h3?: PublicMenuitemOptions | false;
/** Small heading */
h4?: PublicMenuitemOptions | false;
/** Blockquotes & pull quotes */
quote?: PublicMenuitemOptions | false;
[key: string]: PublicMenuitemOptions | false | undefined;
}
export declare const HighlightMenu: Feature<HighlightMenuOptions, any>;
//# sourceMappingURL=index.d.ts.map