UNPKG

777 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5import { Plugin } from 'ckeditor5/src/core';
6/**
7 * The image upload button plugin.
8 *
9 * For a detailed overview, check the {@glink features/images/image-upload/image-upload Image upload feature} documentation.
10 *
11 * Adds the `'uploadImage'` button to the {@link module:ui/componentfactory~ComponentFactory UI component factory}
12 * and also the `imageUpload` button as an alias for backward compatibility.
13 */
14export default class ImageUploadUI extends Plugin {
15 /**
16 * @inheritDoc
17 */
18 static get pluginName(): "ImageUploadUI";
19 /**
20 * @inheritDoc
21 */
22 init(): void;
23}