UNPKG

583 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 */
5import { Plugin } from 'ckeditor5/src/core.js';
6/**
7 * The list UI feature. It introduces the `'numberedList'` and `'bulletedList'` buttons that
8 * allow to convert paragraphs to and from list items and indent or outdent them.
9 */
10export default class ListUI extends Plugin {
11 /**
12 * @inheritDoc
13 */
14 static get pluginName(): "ListUI";
15 /**
16 * @inheritDoc
17 */
18 init(): void;
19}