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/documentlist
|
7 | */
|
8 | import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
9 | import List from './list.js';
|
10 | /**
|
11 | * The document list feature.
|
12 | *
|
13 | * This is an obsolete plugin that exists for backward compatibility only.
|
14 | * Use the {@link module:list/list~List `List`} instead.
|
15 | *
|
16 | * @deprecated
|
17 | */
|
18 | export default class DocumentList extends Plugin {
|
19 | /**
|
20 | * @inheritDoc
|
21 | */
|
22 | static get requires(): readonly [typeof List];
|
23 | /**
|
24 | * @inheritDoc
|
25 | */
|
26 | static get pluginName(): "DocumentList";
|
27 | constructor(editor: Editor);
|
28 | }
|