UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

18 lines (17 loc) 621 B
import { ISelectItemModel } from './ISelectItemModel'; import { AbstractI18NApplicable } from '../../share/AbstractI18NApplicable'; export declare class DefaultSelectItemModel extends AbstractI18NApplicable implements ISelectItemModel { label: string; selectedLabel: string; value: any; id: any; constructor(label: string, value: any, selectedLabel?: string); getValue(): any; setValue(value: any): void; getId(): any; setId(id: any): void; getLabel(): string; setLabel(label: string): void; getSelectedLabel(): string; setSelectedLabel(selectedLabel: string): void; }