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) 725 B
import { CommandBase, CommandOptions, ICommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; export declare class InsertSpaceCommand extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; protected DEPRECATEDCorrectlMainCommandOptions(options: ICommandOptions): void; executeCore(_state: SimpleCommandState, options: CommandOptions): boolean; } export declare class InsertNonBreakingSpaceCommand extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; protected DEPRECATEDCorrectlMainCommandOptions(options: ICommandOptions): void; executeCore(_state: SimpleCommandState, options: CommandOptions): boolean; }