diff --git a/packages/ckeditor5/src/augmentation.ts b/packages/ckeditor5/src/augmentation.ts index c34f07e66..da5e1c915 100644 --- a/packages/ckeditor5/src/augmentation.ts +++ b/packages/ckeditor5/src/augmentation.ts @@ -23,8 +23,6 @@ declare global { } } -type Keystroke = string | string[]; - declare module "ckeditor5" { interface Editor { getSelectedHtml(): string; @@ -39,10 +37,10 @@ declare module "ckeditor5" { enabled: boolean; }, moveBlockUp?: { - keystroke: Keystroke; + keystroke: string[]; }, moveBlockDown?: { - keystroke: Keystroke; + keystroke: string[]; }, clipboard?: { copy(text: string): void;