UNPKG

devexpress-richedit

Version:

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

10 lines (9 loc) 472 B
import { CommandBase } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { ReplaceAllCommandOptions } from './replace-all-command'; export declare class ReplaceNextCommandOptions extends ReplaceAllCommandOptions { } export declare class ReplaceNextCommand extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; executeCore(_state: SimpleCommandState, options: ReplaceNextCommandOptions): boolean; }