1 | import { Plugin } from "@ckeditor/ckeditor5-core";
|
2 | import StrikethroughEditing from "./strikethrough/strikethroughediting";
|
3 | import StrikethroughUI from "./strikethrough/strikethroughui";
|
4 |
|
5 | export default class Strikethrough extends Plugin {
|
6 | static readonly requires: [typeof StrikethroughEditing, typeof StrikethroughUI];
|
7 | static readonly pluginName: "Strikethrough";
|
8 | }
|
9 |
|
10 | declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
|
11 | interface Plugins {
|
12 | Strikethrough: Strikethrough;
|
13 | }
|
14 | }
|