UNPKG

@jswf/core

Version:

JavaScript Window Framework

17 lines (16 loc) 414 B
import { BaseView } from "./BaseView"; import "../scss/SelectBox.scss"; export declare class SelectBox extends BaseView { private select; constructor(option: { name?: string; options: { label: string; value: string | number | boolean; }[]; event?: { [key: string]: () => void; }; }); getValue(): string; }