UNPKG

@wangeditor-kai/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

27 lines (26 loc) 599 B
/** * @description font-size font-family menu entry * @author wangfupeng */ import FontFamilyMenu from './FontFamilyMenu'; import FontSizeMenu from './FontSizeMenu'; export declare const fontSizeMenuConf: { key: string; factory(): FontSizeMenu; config: { fontSizeList: (string | { name: string; value: string; })[]; }; }; export declare const fontFamilyMenuConf: { key: string; factory(): FontFamilyMenu; config: { fontFamilyList: (string | { name: string; value: string; })[]; }; };