Files
cartlog-admin/node_modules/jodit/esm/plugins/key-arrow-outside/key-arrow-outside.d.ts
2026-01-01 15:25:19 +05:30

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;
}