UNPKG

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