UNPKG

@ckeditor/ckeditor5-list

Version:

Ordered and unordered lists feature to CKEditor 5.

32 lines (31 loc) 1.13 kB
/** * @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/legacylistproperties */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { LegacyListPropertiesEditing } from "./legacylistproperties/legacylistpropertiesediting.js"; import { ListPropertiesUI } from "./listproperties/listpropertiesui.js"; /** * The legacy list properties feature. * * This is a "glue" plugin that loads the {@link module:list/legacylistproperties/legacylistpropertiesediting~LegacyListPropertiesEditing * legacy list properties editing feature} and the * {@link module:list/listproperties/listpropertiesui~ListPropertiesUI list properties UI feature}. */ export declare class LegacyListProperties extends Plugin { /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[LegacyListPropertiesEditing, ListPropertiesUI]>; /** * @inheritDoc */ static get pluginName(): "LegacyListProperties"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; }