com.phloxui
Version:
PhloxUI Ng2+ Framework
15 lines (14 loc) • 555 B
TypeScript
import { ISelectItemModel } from './ISelectItemModel';
import { AbstractI18NApplicable } from '../AbstractI18NApplicable';
export declare class DefaultSelectItemModel extends AbstractI18NApplicable implements ISelectItemModel {
label: string;
selectedLabel: string;
value: any;
constructor(label: string, value: any, selectedLabel?: string);
getValue(): any;
setValue(value: any): void;
getLabel(): string;
setLabel(label: string): void;
getSelectedLabel(): string;
setSelectedLabel(selectedLabel: string): void;
}