UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

8 lines (7 loc) 239 B
import { IControl } from "@docsvision/webclient/Legacy/IControl"; /** @internal */ export interface ITextControl extends IControl { /** Fired when the text is changed. */ OnTextChange: Function; Text(value?: string): string; }