systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
26 lines (25 loc) • 1.06 kB
TypeScript
import { AbstractComboBox } from '../combobox/abstract-combobox.component';
import { ChangeDetectorRef, OnInit, Renderer2 } from '@angular/core';
import { I18nService } from 'systelab-translate';
import * as i0 from "@angular/core";
declare class Element {
id: string;
description: string;
constructor(id: string, description: string);
}
export declare class AllYesNoSelect extends AbstractComboBox<Element> implements OnInit {
chRef: ChangeDetectorRef;
i18nService: I18nService;
private readonly descriptionAll;
private readonly descriptionYes;
private readonly descriptionNo;
constructor(myRenderer: Renderer2, chRef: ChangeDetectorRef, i18nService: I18nService);
ngOnInit(): void;
getInstance(): Element;
getDescriptionField(): string;
getCodeField(): string;
getIdField(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<AllYesNoSelect, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AllYesNoSelect, "systelab-all-yes-no-select", never, {}, {}, never, never, false, never>;
}
export {};