@ckeditor/ckeditor5-link
Version:
Link feature for CKEditor 5.
32 lines (31 loc) • 961 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module link/linkimage
*/
import { Plugin } from 'ckeditor5/src/core.js';
import { LinkImageEditing } from './linkimageediting.js';
import { LinkImageUI } from './linkimageui.js';
import '../theme/linkimage.css';
/**
* The `LinkImage` plugin.
*
* This is a "glue" plugin that loads the {@link module:link/linkimageediting~LinkImageEditing link image editing feature}
* and {@link module:link/linkimageui~LinkImageUI link image UI feature}.
*/
export declare class LinkImage extends Plugin {
/**
* @inheritDoc
*/
static get requires(): readonly [typeof LinkImageEditing, typeof LinkImageUI];
/**
* @inheritDoc
*/
static get pluginName(): "LinkImage";
/**
* @inheritDoc
*/
static get isOfficialPlugin(): true;
}