UNPKG

849 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module list/legacylist
7 */
8import LegacyListEditing from './legacylist/legacylistediting.js';
9import ListUI from './list/listui.js';
10import { Plugin } from 'ckeditor5/src/core.js';
11/**
12 * The legacy list feature.
13 *
14 * This is a "glue" plugin that loads the {@link module:list/legacylist/legacylistediting~LegacyListEditing legacy list editing feature}
15 * and {@link module:list/list/listui~ListUI list UI feature}.
16 */
17export default class LegacyList extends Plugin {
18 /**
19 * @inheritDoc
20 */
21 static get requires(): readonly [typeof LegacyListEditing, typeof ListUI];
22 /**
23 * @inheritDoc
24 */
25 static get pluginName(): "LegacyList";
26}