ngx-select2-ex
Version:
Angular(2+) version of the popular alternative to select inputs, Select2. Select2 classes are used in the template, so you can use any pre-existing styles for Select2 and it will look the same as the original.
9 lines (8 loc) • 333 B
TypeScript
import { INgxSelect2ExOption } from '../interfaces/ngx-select2-ex-option';
export declare class NgxSelect2ExOption implements INgxSelect2ExOption {
id: number | string;
value: string;
disabled: boolean;
selected: boolean;
constructor(id: number | string, value: string, disabled?: boolean, selected?: boolean);
}