| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import { ClassicEditor } from '@ckeditor/ckeditor5-editor-classic';
- import { Autoformat } from '@ckeditor/ckeditor5-autoformat';
- import { Bold, Italic } from '@ckeditor/ckeditor5-basic-styles';
- import { BlockQuote } from '@ckeditor/ckeditor5-block-quote';
- import { CloudServices } from '@ckeditor/ckeditor5-cloud-services';
- import { Essentials } from '@ckeditor/ckeditor5-essentials';
- import { FontSize } from '@ckeditor/ckeditor5-font';
- import { Heading } from '@ckeditor/ckeditor5-heading';
- import { Highlight } from '@ckeditor/ckeditor5-highlight';
- import { Image, ImageCaption, ImageResize, ImageStyle, ImageToolbar, ImageUpload } from '@ckeditor/ckeditor5-image';
- import { Indent } from '@ckeditor/ckeditor5-indent';
- import { Link } from '@ckeditor/ckeditor5-link';
- import { List } from '@ckeditor/ckeditor5-list';
- import { MediaEmbed } from '@ckeditor/ckeditor5-media-embed';
- import { Paragraph } from '@ckeditor/ckeditor5-paragraph';
- import { PasteFromOffice } from '@ckeditor/ckeditor5-paste-from-office';
- import { Table, TableToolbar } from '@ckeditor/ckeditor5-table';
- import { TextTransformation } from '@ckeditor/ckeditor5-typing';
- import MyCustomPlugin from './customPluugs';
- declare class Editor extends ClassicEditor {
- static builtinPlugins: (typeof Autoformat | typeof BlockQuote | typeof Bold | typeof CloudServices | typeof Essentials | typeof FontSize | typeof Heading | typeof Highlight | typeof Image | typeof ImageCaption | typeof ImageResize | typeof ImageStyle | typeof ImageToolbar | typeof ImageUpload | typeof Indent | typeof Italic | typeof Link | typeof List | typeof MediaEmbed | typeof Paragraph | typeof PasteFromOffice | typeof Table | typeof TableToolbar | typeof TextTransformation)[];
- static defaultConfig: {
- toolbar: {
- items: string[];
- };
- language: string;
- image: {
- toolbar: string[];
- };
- table: {
- contentToolbar: string[];
- };
- extraPlugins: (typeof MyCustomPlugin)[];
- };
- }
- export default Editor;
|