UNPKG

318 BTypeScriptView Raw
1import { DropListItem } from '../menu-constructors/DropList';
2import { FontSizeConfType } from '../../config/menus';
3/**
4 * FontSizeList 字号配置列表
5 */
6declare class FontSizeList {
7 private itemList;
8 constructor(list: FontSizeConfType);
9 getItemList(): DropListItem[];
10}
11export default FontSizeList;