rad-gui
Version:
A simple, feature-rich, and easy-to-use GUI library for better visibility into data intensive applications.
12 lines (11 loc) • 355 B
TypeScript
import BaseControl from './base-control';
export default class OptionControl extends BaseControl {
$select: HTMLSelectElement;
$display: HTMLDivElement;
private _values;
private _names;
constructor(parent: any, object: any, property: any, options: any);
options(options: any): this;
update(): this;
}
export { OptionControl };