UNPKG

281 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2
3export default class ListUI extends Plugin {
4 static readonly pluginName: 'ListUI';
5 init(): void;
6}
7
8declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
9 interface Plugins {
10 ListUI: ListUI;
11 }
12}