UNPKG

759 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 image/imagetextalternative/imagetextalternativeediting
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import ImageUtils from '../imageutils.js';
10/**
11 * The image text alternative editing plugin.
12 *
13 * Registers the `'imageTextAlternative'` command.
14 */
15export default class ImageTextAlternativeEditing extends Plugin {
16 /**
17 * @inheritDoc
18 */
19 static get requires(): readonly [typeof ImageUtils];
20 /**
21 * @inheritDoc
22 */
23 static get pluginName(): "ImageTextAlternativeEditing";
24 /**
25 * @inheritDoc
26 */
27 init(): void;
28}