UNPKG

677 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 media-embed/mediaembedui
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import MediaEmbedEditing from './mediaembedediting.js';
10/**
11 * The media embed UI plugin.
12 */
13export default class MediaEmbedUI extends Plugin {
14 /**
15 * @inheritDoc
16 */
17 static get requires(): readonly [typeof MediaEmbedEditing];
18 /**
19 * @inheritDoc
20 */
21 static get pluginName(): "MediaEmbedUI";
22 /**
23 * @inheritDoc
24 */
25 init(): void;
26 private _setUpDropdown;
27}