devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 413 B
TypeScript
import { IEventListener } from '../utils/event-dispatcher';
import { FontInfoCache } from '../model/caches/hashed-caches/font-info-cache';
import { FontInfo } from '../model/fonts/font-info';
export interface IFontsChangesListener extends IEventListener {
NotifyFontAdded(font: FontInfo): void;
NotifyFontRemoved(font: FontInfo): void;
NotifyFontListChanged(fontCache: FontInfoCache): void;
}