UNPKG

559 BTypeScriptView Raw
1import { Plugin, Editor } from '@ckeditor/ckeditor5-core';
2import ListEditing from '../list/listediting';
3
4/**
5 * The engine of the list properties feature.
6 */
7export default class ListPropertiesEditing extends Plugin {
8 static readonly pluginName: 'ListPropertiesEditing';
9 static readonly requires: [typeof ListEditing];
10
11 constructor(editor: Editor);
12 init(): void;
13 afterInit(): void;
14}
15
16declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
17 interface Plugins {
18 ListPropertiesEditing: ListPropertiesEditing;
19 }
20}