UNPKG

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