UNPKG

@ckeditor/ckeditor5-list

Version:

Ordered and unordered lists feature to CKEditor 5.

20 lines (19 loc) 576 B
/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import { Plugin } from 'ckeditor5/src/core'; /** * The to-do list UI feature. It introduces the `'todoList'` button that * allows to convert elements to and from to-do list items and to indent or outdent them. */ export default class TodoListUI extends Plugin { /** * @inheritDoc */ static get pluginName(): 'TodoListUI'; /** * @inheritDoc */ init(): void; }