UNPKG

871 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, 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/**
6 * @module link/linkimage
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import LinkImageEditing from './linkimageediting.js';
10import LinkImageUI from './linkimageui.js';
11import '../theme/linkimage.css';
12/**
13 * The `LinkImage` plugin.
14 *
15 * This is a "glue" plugin that loads the {@link module:link/linkimageediting~LinkImageEditing link image editing feature}
16 * and {@link module:link/linkimageui~LinkImageUI link image UI feature}.
17 */
18export default class LinkImage extends Plugin {
19 /**
20 * @inheritDoc
21 */
22 static get requires(): readonly [typeof LinkImageEditing, typeof LinkImageUI];
23 /**
24 * @inheritDoc
25 */
26 static get pluginName(): "LinkImage";
27}