@ckeditor/ckeditor5-list
Version:
Ordered and unordered lists feature to CKEditor 5.
31 lines (30 loc) • 925 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/legacylist
*/
import { LegacyListEditing } from "./legacylist/legacylistediting.js";
import { ListUI } from "./list/listui.js";
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
/**
* The legacy list feature.
*
* This is a "glue" plugin that loads the {@link module:list/legacylist/legacylistediting~LegacyListEditing legacy list editing feature}
* and {@link module:list/list/listui~ListUI list UI feature}.
*/
export declare class LegacyList extends Plugin {
/**
* @inheritDoc
*/
static get requires(): PluginDependenciesOf<[LegacyListEditing, ListUI]>;
/**
* @inheritDoc
*/
static get pluginName(): "LegacyList";
/**
* @inheritDoc
*/
static override get isOfficialPlugin(): true;
}