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) 569 B
import { CommandBase, ICommandOptions } from '../command-base'; import { IntervalCommandState } from '../command-states'; export declare class ShowAllFieldCodesCommand extends CommandBase<IntervalCommandState> { getState(): IntervalCommandState; isEnabled(): boolean; executeCore(_state: IntervalCommandState, _options: ICommandOptions): boolean; protected baseValue(): boolean; isEnabledInReadOnlyMode(): boolean; } export declare class ShowAllFieldResultCommand extends ShowAllFieldCodesCommand { protected baseValue(): boolean; }