@ckeditor/ckeditor5-list
Version:
Ordered and unordered lists feature to CKEditor 5.
27 lines (26 loc) • 849 B
TypeScript
/**
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module list/legacylist
*/
import LegacyListEditing from './legacylist/legacylistediting.js';
import ListUI from './list/listui.js';
import { Plugin } from 'ckeditor5/src/core.js';
/**
* 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 default class LegacyList extends Plugin {
/**
* @inheritDoc
*/
static get requires(): readonly [typeof LegacyListEditing, typeof ListUI];
/**
* @inheritDoc
*/
static get pluginName(): "LegacyList";
}