UNPKG

288 BTypeScriptView Raw
1import { Command } from '@ckeditor/ckeditor5-core';
2
3export default class UnlinkCommand extends Command {
4 refresh(): void;
5 execute(): void;
6}
7
8declare module '@ckeditor/ckeditor5-core/src/commandcollection' {
9 interface Commands {
10 UnlinkCommand: UnlinkCommand;
11 }
12}