UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 585 B
import { IEventListener } from '../utils/event-dispatcher'; import { Selection } from './selection'; export interface ISelectionChangesListener extends IEventListener { NotifySelectionChanged(selection: Selection): void; } export interface IScrollChangesListener extends IEventListener { NotifyScrollChanged(): void; } export interface ISearchSelectionChangesListener extends IEventListener { NotifySearchSelectionChanged(): void; } export interface IMisspelledSelectionChangesListener extends IEventListener { NotifyMisspelledSelectionChanged(): void; }