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) 455 B
import { ICustomLoadingPanel } from '../../common/loading-panel/panel'; import { RichEditCore } from '../../common/rich-edit-core'; export declare class LoadingPanelApi { private _core; get enabled(): boolean; set enabled(value: boolean); get customPanel(): undefined | ICustomLoadingPanel; set customPanel(value: undefined | ICustomLoadingPanel); constructor(core: RichEditCore); show(): void; hide(): void; }