UNPKG

537 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 basic-styles/underline/underlineui
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9/**
10 * The underline UI feature. It introduces the Underline button.
11 */
12export default class UnderlineUI extends Plugin {
13 /**
14 * @inheritDoc
15 */
16 static get pluginName(): "UnderlineUI";
17 /**
18 * @inheritDoc
19 */
20 init(): void;
21}