@ckeditor/ckeditor5-list
Version:
Ordered and unordered lists feature to CKEditor 5.
32 lines (31 loc) • 973 B
TypeScript
/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module list/todolist
*/
import { TodoListEditing } from "./todolist/todolistediting.js";
import { TodoListUI } from "./todolist/todolistui.js";
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
import "../theme/todolist.css";
/**
* The to-do list feature.
*
* This is a "glue" plugin that loads the {@link module:list/todolist/todolistediting~TodoListEditing to-do list
* editing feature} and the {@link module:list/todolist/todolistui~TodoListUI to-do list UI feature}.
*/
export declare class TodoList extends Plugin {
/**
* @inheritDoc
*/
static get requires(): PluginDependenciesOf<[TodoListEditing, TodoListUI]>;
/**
* @inheritDoc
*/
static get pluginName(): "TodoList";
/**
* @inheritDoc
*/
static override get isOfficialPlugin(): true;
}