]> wagnertech.de Git - mfinanz.git/blob - js/ckeditor5/ckeditor.d.ts
date error in mapping
[mfinanz.git] / js / ckeditor5 / ckeditor.d.ts
1 /**
2  * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4  */
5 import { ClassicEditor } from '@ckeditor/ckeditor5-editor-classic';
6 import { Bold, Italic, Strikethrough, Subscript, Superscript, Underline } from '@ckeditor/ckeditor5-basic-styles';
7 import { Essentials } from '@ckeditor/ckeditor5-essentials';
8 import { HorizontalLine } from '@ckeditor/ckeditor5-horizontal-line';
9 import { List } from '@ckeditor/ckeditor5-list';
10 import { Paragraph } from '@ckeditor/ckeditor5-paragraph';
11 import { RemoveFormat } from '@ckeditor/ckeditor5-remove-format';
12 import { SourceEditing } from '@ckeditor/ckeditor5-source-editing';
13 declare class Editor extends ClassicEditor {
14     static builtinPlugins: (typeof Bold | typeof Essentials | typeof HorizontalLine | typeof Italic | typeof List | typeof Paragraph | typeof RemoveFormat | typeof SourceEditing | typeof Strikethrough | typeof Subscript | typeof Superscript | typeof Underline)[];
15     static defaultConfig: {
16         toolbar: {
17             items: string[];
18         };
19         language: string;
20     };
21 }
22 export default Editor;