UNPKG

747 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/strikethrough/strikethroughediting
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9/**
10 * The strikethrough editing feature.
11 *
12 * It registers the `'strikethrough'` command, the <kbd>Ctrl+Shift+X</kbd> keystroke and introduces the
13 * `strikethroughsthrough` attribute in the model which renders to the view
14 * as a `<s>` element.
15 */
16export default class StrikethroughEditing extends Plugin {
17 /**
18 * @inheritDoc
19 */
20 static get pluginName(): "StrikethroughEditing";
21 /**
22 * @inheritDoc
23 */
24 init(): void;
25}