@launchmenu/core
Version:
An environment for visual keyboard controlled applets
10 lines • 551 B
TypeScript
import { ITextSelection } from "../_types/ITextSelection";
import { ITextEditTarget } from "./_types/ITextEditTarget";
/**
* Removes text from the text field in the given direction
* @param targetField The text field to insert the text into
* @param direction The amount of characters to remove and the direction (-1 == backspace)
* @param caret The caret to remove the text at
*/
export declare function removeText(targetField: ITextEditTarget, direction?: number, caret?: ITextSelection): void;
//# sourceMappingURL=removeText.d.ts.map