1 | import { Plugin } from "@ckeditor/ckeditor5-core";
|
2 | import { Paragraph } from "@ckeditor/ckeditor5-paragraph";
|
3 |
|
4 | export default class HeadingEditing extends Plugin {
|
5 | static readonly pluginName: "HeadingEditing";
|
6 | static readonly requires: [typeof Paragraph];
|
7 | init(): void;
|
8 | afterInit(): void;
|
9 | }
|
10 |
|
11 | declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
|
12 | interface Plugins {
|
13 | HeadingEditing: HeadingEditing;
|
14 | }
|
15 | }
|