You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
318 B
Plaintext

9 months ago
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;