UNPKG

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