UNPKG

579 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 to-do list UI feature. It introduces the `'todoList'` button that
8 * allows to convert elements to and from to-do list items and to indent or outdent them.
9 */
10export default class TodoListUI extends Plugin {
11 /**
12 * @inheritDoc
13 */
14 static get pluginName(): "TodoListUI";
15 /**
16 * @inheritDoc
17 */
18 init(): void;
19}