UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

13 lines (12 loc) 601 B
import { ICommandOptions } from '../command-base'; import { ICommandState } from '../i-command'; import { SelectionCommandBase } from './selection-command-base'; export declare class GoToLineStartCommandBase extends SelectionCommandBase { getStartPosition(): number; } export declare class GoToLineStartCommand extends GoToLineStartCommandBase { executeCore(_state: ICommandState, _options: ICommandOptions): boolean; } export declare class ExtendGoToLineStartCommand extends GoToLineStartCommandBase { executeCore(_state: ICommandState, _options: ICommandOptions): boolean; }