@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
10 lines (9 loc) • 380 B
TypeScript
import { Control } from "@docsvision/webclient/Legacy/Control";
export declare class NumericControl extends Control {
textInput: HTMLInputElement;
constructor(root: HTMLElement, value?: string);
Text(value?: string): string;
Init(onComplete?: () => void): void;
OnTextChange: Function;
SetNumericControl(control: HTMLElement, callback?: Function): void;
}