wangeditor
Version: 
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
12 lines (11 loc) • 318 B
TypeScript
import { DropListItem } from '../menu-constructors/DropList';
import { FontSizeConfType } from '../../config/menus';
/**
 * FontSizeList 字号配置列表
 */
declare class FontSizeList {
    private itemList;
    constructor(list: FontSizeConfType);
    getItemList(): DropListItem[];
}
export default FontSizeList;