menu-list.d.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * @description 所有菜单的构造函数
  3. * @author wangfupeng
  4. */
  5. import Bold from './bold/index';
  6. import Head from './head/index';
  7. import Link from './link/index';
  8. import Italic from './italic/index';
  9. import Underline from './underline/index';
  10. import StrikeThrough from './strike-through/index';
  11. import FontStyle from './font-style/index';
  12. import FontSize from './font-size';
  13. import Justify from './justify/index';
  14. import Quote from './quote/index';
  15. import BackColor from './back-color/index';
  16. import FontColor from './font-color/index';
  17. import Video from './video/index';
  18. import Image from './img/index';
  19. import Indent from './indent/index';
  20. import Emoticon from './emoticon/index';
  21. import List from './list/index';
  22. import LineHeight from './lineHeight/index';
  23. import Undo from './undo/index';
  24. import Redo from './redo/index';
  25. import Table from './table/index';
  26. import Code from './code';
  27. import SplitLine from './split-line/index';
  28. import Todo from './todo';
  29. export declare type MenuListType = {
  30. [key: string]: any;
  31. };
  32. declare 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. };
  58. export default _default;