UNPKG

370 BTypeScriptView Raw
1import { Command, Editor } from '@ckeditor/ckeditor5-core';
2
3export default class IndentCommand extends Command {
4 constructor(editor: Editor, indentDirection: 'forward' | 'backward');
5 refresh(): void;
6 execute(): void;
7}
8
9declare module '@ckeditor/ckeditor5-core/src/commandcollection' {
10 interface Commands {
11 IndentCommand: IndentCommand;
12 }
13}