@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
9 lines (8 loc) • 317 B
TypeScript
import { Control } from "@docsvision/webclient/Legacy/Control";
export declare class BooleanControl extends Control {
selectElement: HTMLSelectElement;
constructor(root: HTMLElement, value?: boolean);
Value(value?: boolean): string;
Init(onComplete?: () => void): void;
OnValueChange: Function;
}