UNPKG

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