UNPKG

devexpress-richedit

Version:

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

19 lines (18 loc) 936 B
import { UpdateFieldsOptions } from '../../model/fields/tree-creator'; import { SubDocument } from '../../model/sub-document'; import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed'; import { CommandSimpleOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { UpdateFieldCommandBase } from './update-field-command-base'; export declare class UpdateFieldCommandParameters { callbackFunc: () => void; subDocument: SubDocument; intervals: FixedInterval[]; readonly options: UpdateFieldsOptions; constructor(subDocument: SubDocument, intervals: FixedInterval[], callbackFunc: () => void); } export declare class UpdateFieldCommand extends UpdateFieldCommandBase { getState(): SimpleCommandState; isEnabled(): boolean; executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<UpdateFieldCommandParameters>): boolean; }