UNPKG

1.76 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';
28import Todo from './todo';
29export declare type MenuListType = {
30 [key: string]: any;
31};
32declare const _default: {
33 bold: typeof Bold;
34 head: typeof Head;
35 italic: typeof Italic;
36 link: typeof Link;
37 underline: typeof Underline;
38 strikeThrough: typeof StrikeThrough;
39 fontName: typeof FontStyle;
40 fontSize: typeof FontSize;
41 justify: typeof Justify;
42 quote: typeof Quote;
43 backColor: typeof BackColor;
44 foreColor: typeof FontColor;
45 video: typeof Video;
46 image: typeof Image;
47 indent: typeof Indent;
48 emoticon: typeof Emoticon;
49 list: typeof List;
50 lineHeight: typeof LineHeight;
51 undo: typeof Undo;
52 redo: typeof Redo;
53 table: typeof Table;
54 code: typeof Code;
55 splitLine: typeof SplitLine;
56 todo: typeof Todo;
57};
58export default _default;