AutorÃa | Ultima modificación | Ver Log |
/*** @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 { Alignment } from '@ckeditor/ckeditor5-alignment';import { Autoformat } from '@ckeditor/ckeditor5-autoformat';import { Bold, Code, Italic, Strikethrough, Subscript, Superscript, Underline } from '@ckeditor/ckeditor5-basic-styles';import { BlockQuote } from '@ckeditor/ckeditor5-block-quote';import { CodeBlock } from '@ckeditor/ckeditor5-code-block';import type { EditorConfig } from '@ckeditor/ckeditor5-core';import { Essentials } from '@ckeditor/ckeditor5-essentials';import { FontBackgroundColor, FontColor, FontFamily, FontSize } from '@ckeditor/ckeditor5-font';import { Heading } from '@ckeditor/ckeditor5-heading';import { Highlight } from '@ckeditor/ckeditor5-highlight';import { HorizontalLine } from '@ckeditor/ckeditor5-horizontal-line';import { GeneralHtmlSupport } from '@ckeditor/ckeditor5-html-support';import { Image, ImageCaption, ImageStyle, ImageToolbar, ImageUpload } from '@ckeditor/ckeditor5-image';import { Indent, IndentBlock } from '@ckeditor/ckeditor5-indent';import { AutoLink, 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 { RemoveFormat } from '@ckeditor/ckeditor5-remove-format';import { SelectAll } from '@ckeditor/ckeditor5-select-all';import { Table, TableCaption, TableCellProperties, TableColumnResize, TableProperties, TableToolbar } from '@h5p/ckeditor5-table';import { TextTransformation } from '@ckeditor/ckeditor5-typing';declare class Editor extends ClassicEditor {static builtinPlugins: (typeof Alignment | typeof AutoLink | typeof Autoformat | typeof BlockQuote | typeof Bold | typeof Code | typeof CodeBlock | typeof Essentials | typeof FontBackgroundColor | typeof FontColor | typeof FontFamily | typeof FontSize | typeof GeneralHtmlSupport | typeof Heading | typeof Highlight | typeof HorizontalLine | typeof Image | typeof ImageCaption | typeof ImageStyle | typeof ImageToolbar | typeof ImageUpload | typeof Indent | typeof IndentBlock | typeof Italic | typeof Link | typeof List | typeof MediaEmbed | typeof Paragraph | typeof PasteFromOffice | typeof RemoveFormat | typeof SelectAll | typeof Strikethrough | typeof Subscript | typeof Superscript | typeof Table | typeof TableCaption | typeof TableCellProperties | typeof TableColumnResize | typeof TableProperties | typeof TableToolbar | typeof TextTransformation | typeof Underline)[];static defaultConfig: EditorConfig;}export default Editor;