UNPKG

489 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2import { Enter } from '@ckeditor/ckeditor5-enter';
3import { Delete } from '@ckeditor/ckeditor5-typing';
4
5export default class ListEditing extends Plugin {
6 static readonly pluginName: 'ListEditing';
7 static readonly requires: [typeof Enter, typeof Delete];
8 init(): void;
9 afterInit(): void;
10}
11
12declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
13 interface Plugins {
14 ListEditing: ListEditing;
15 }
16}