UNPKG

1.15 kBTypeScriptView 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
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import ImageTextAlternativeEditing from './imagetextalternative/imagetextalternativeediting.js';
10import ImageTextAlternativeUI from './imagetextalternative/imagetextalternativeui.js';
11/**
12 * The image text alternative plugin.
13 *
14 * For a detailed overview, check the {@glink features/images/images-styles image styles} documentation.
15 *
16 * This is a "glue" plugin which loads the
17 * {@link module:image/imagetextalternative/imagetextalternativeediting~ImageTextAlternativeEditing}
18 * and {@link module:image/imagetextalternative/imagetextalternativeui~ImageTextAlternativeUI} plugins.
19 */
20export default class ImageTextAlternative extends Plugin {
21 /**
22 * @inheritDoc
23 */
24 static get requires(): readonly [typeof ImageTextAlternativeEditing, typeof ImageTextAlternativeUI];
25 /**
26 * @inheritDoc
27 */
28 static get pluginName(): "ImageTextAlternative";
29}