import { ITextField } from "../../_types/ITextField"; import { TextEditCommand } from "./TextEditCommand"; import { IRetrievableArgument } from "./_types/IRetrievableArgument"; /** A command to move the cursor vertically */ export declare class MoveCursorVerticalCommand extends TextEditCommand { /** * Creates a new command to move the cursor vertically (up or down, positive is down) * @param textField The text field ot move the cursor for * @param direction The movement direction * @param expandSelection Whether to alter the current text selection */ constructor(textField: ITextField, direction?: IRetrievableArgument, expandSelection?: IRetrievableArgument); } //# sourceMappingURL=MoveCursorVerticalCommand.d.ts.map