@ckeditor/ckeditor5-html-support
Version:
HTML Support feature for CKEditor 5.
27 lines (26 loc) • 677 B
TypeScript
/**
* @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
*/
/**
* @module html-support/integrations/script
*/
import { Plugin } from 'ckeditor5/src/core';
import DataFilter from '../datafilter';
/**
* Provides the General HTML Support for `script` elements.
*/
export default class ScriptElementSupport extends Plugin {
/**
* @inheritDoc
*/
static get requires(): readonly [typeof DataFilter];
/**
* @inheritDoc
*/
static get pluginName(): "ScriptElementSupport";
/**
* @inheritDoc
*/
init(): void;
}