-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodules.ts
52 lines (51 loc) · 3.2 KB
/
modules.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
export * as Alignment from "@ckeditor/ckeditor5-alignment";
export * as Autosave from "@ckeditor/ckeditor5-autosave";
export * as BasicStyles from "@ckeditor/ckeditor5-basic-styles";
export * as BlockQuote from "@ckeditor/ckeditor5-block-quote";
export * as ClassicEditor from "@ckeditor/ckeditor5-editor-classic";
export * as Clipboard from "@ckeditor/ckeditor5-clipboard";
export * as CodeBlock from "@ckeditor/ckeditor5-code-block";
export * as Core from "@ckeditor/ckeditor5-core";
export * as Editor from "@ckeditor/ckeditor5-editor-classic";
export * as Engine from "@ckeditor/ckeditor5-engine";
export * as Enter from "@ckeditor/ckeditor5-enter";
export * as Essentials from "@ckeditor/ckeditor5-essentials";
export * as Font from "@ckeditor/ckeditor5-font";
export * as Heading from "@ckeditor/ckeditor5-heading";
export * as Highlight from "@ckeditor/ckeditor5-highlight";
export * as HorizontalLine from "@ckeditor/ckeditor5-horizontal-line";
export * as HtmlEmbed from "@ckeditor/ckeditor5-html-embed";
export * as Image from "@ckeditor/ckeditor5-image";
export * as Indent from "@ckeditor/ckeditor5-indent";
export * as Language from "@ckeditor/ckeditor5-language";
export * as Link from "@ckeditor/ckeditor5-link";
export * as List from "@ckeditor/ckeditor5-list";
export * as Mention from "@ckeditor/ckeditor5-mention";
export * as Paragraph from "@ckeditor/ckeditor5-paragraph";
export * as PasteFromOffice from "@ckeditor/ckeditor5-paste-from-office";
export * as RemoveFormat from "@ckeditor/ckeditor5-remove-format";
export * as SelectAll from "@ckeditor/ckeditor5-select-all";
export * as Table from "@ckeditor/ckeditor5-table";
export * as Typing from "@ckeditor/ckeditor5-typing";
export * as Ui from "@ckeditor/ckeditor5-ui";
export * as Undo from "@ckeditor/ckeditor5-undo";
export * as Upload from "@ckeditor/ckeditor5-upload";
export * as Utils from "@ckeditor/ckeditor5-utils";
export * as Widget from "@ckeditor/ckeditor5-widget";
export * as WoltlabAttachment from "./plugins/ckeditor5-woltlab-attachment/src";
export * as WoltlabAutoLink from "./plugins/ckeditor5-woltlab-autolink/src";
export * as WoltlabAutosave from "./plugins/ckeditor5-woltlab-autosave/src";
export * as WoltlabBbcode from "./plugins/ckeditor5-woltlab-bbcode/src";
export * as WoltlabBlockQuote from "./plugins/ckeditor5-woltlab-block-quote/src";
export * as WoltlabCode from "./plugins/ckeditor5-woltlab-code/src";
export * as WoltlabCodeBlock from "./plugins/ckeditor5-woltlab-code-block/src";
export * as WoltlabHtmlEmbed from "./plugins/ckeditor5-woltlab-html-embed/src";
export * as WoltlabImage from "./plugins/ckeditor5-woltlab-image/src";
export * as WoltlabMagicParagraph from "./plugins/ckeditor5-woltlab-magic-paragraph/src";
export * as WoltlabMention from "./plugins/ckeditor5-woltlab-mention/src";
export * as WoltlabMetacode from "./plugins/ckeditor5-woltlab-metacode/src";
export * as WoltlabSmiley from "./plugins/ckeditor5-woltlab-smiley/src";
export * as WoltlabSpoiler from "./plugins/ckeditor5-woltlab-spoiler/src";
export * as WoltlabToolbarGroup from "./plugins/ckeditor5-woltlab-toolbar-group/src";
export * as WoltlabUpload from "./plugins/ckeditor5-woltlab-upload/src";
export * as WoltlabFontSize from "./plugins/ckeditor5-woltlab-font-size/src";