UNPKG

1.71 kBTypeScriptView Raw
1/**
2 * @description 所有菜单的构造函数
3 * @author wangfupeng
4 */
5import Bold from './bold/index';
6import Head from './head/index';
7import Link from './link/index';
8import Italic from './italic/index';
9import Underline from './underline/index';
10import StrikeThrough from './strike-through/index';
11import FontStyle from './font-style/index';
12import FontSize from './font-size';
13import Justify from './justify/index';
14import Quote from './quote/index';
15import BackColor from './back-color/index';
16import FontColor from './font-color/index';
17import Video from './video/index';
18import Image from './img/index';
19import Indent from './indent/index';
20import Emoticon from './emoticon/index';
21import List from './list/index';
22import LineHeight from './lineHeight/index';
23import Undo from './undo/index';
24import Redo from './redo/index';
25import Table from './table/index';
26import Code from './code';
27import SplitLine from './split-line/index';
28export declare type MenuListType = {
29 [key: string]: any;
30};
31declare const _default: {
32 bold: typeof Bold;
33 head: typeof Head;
34 italic: typeof Italic;
35 link: typeof Link;
36 underline: typeof Underline;
37 strikeThrough: typeof StrikeThrough;
38 fontName: typeof FontStyle;
39 fontSize: typeof FontSize;
40 justify: typeof Justify;
41 quote: typeof Quote;
42 backColor: typeof BackColor;
43 foreColor: typeof FontColor;
44 video: typeof Video;
45 image: typeof Image;
46 indent: typeof Indent;
47 emoticon: typeof Emoticon;
48 list: typeof List;
49 lineHeight: typeof LineHeight;
50 undo: typeof Undo;
51 redo: typeof Redo;
52 table: typeof Table;
53 code: typeof Code;
54 splitLine: typeof SplitLine;
55};
56export default _default;