UNPKG

@ckeditor/ckeditor5-html-support

Version:

HTML Support feature for CKEditor 5.

28 lines (27 loc) 762 B
/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import { Plugin } from 'ckeditor5/src/core'; import DataFilter from '../datafilter'; /** * Provides the General HTML Support integration with the {@link module:list/documentlist~DocumentList Document List} feature. */ export default class DocumentListElementSupport extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof DataFilter]; /** * @inheritDoc */ static get pluginName(): "DocumentListElementSupport"; /** * @inheritDoc */ init(): void; /** * @inheritDoc */ afterInit(): void; }