21 lines
744 B
TypeScript
21 lines
744 B
TypeScript
/*!
|
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
*/
|
|
/**
|
|
* [[include:plugins/key-arrow-outside/README.md]]
|
|
* @packageDocumentation
|
|
* @module plugins/key-arrow-outside
|
|
*/
|
|
import type { IJodit } from "../../types/index";
|
|
import { Plugin } from "../../core/plugin/index";
|
|
/**
|
|
* Allowing to go outside of an inline element if there is no other element after that.
|
|
*/
|
|
export declare class keyArrowOutside extends Plugin {
|
|
protected afterInit(jodit: IJodit): void;
|
|
protected beforeDestruct(jodit: IJodit): void;
|
|
protected onKeyDownArrow(e: KeyboardEvent): void;
|
|
}
|