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.
25 lines (24 loc) • 1.04 kB
TypeScript
import { AfterViewInit } from '@angular/core';
import { I18nService } from 'systelab-translate';
import { AbstractListBox } from './abstract-listbox.component';
import * as i0 from "@angular/core";
declare class Element {
id: string;
description: string;
constructor(id: string, description: string);
}
export declare class SystelabGenderListBox extends AbstractListBox<Element> implements AfterViewInit {
i18nService: I18nService;
showAll: boolean;
constructor(i18nService: I18nService);
ngAfterViewInit(): void;
getAllFieldID(): number | string;
getAllFieldDescription(): string;
getIdField(): string;
getDescriptionField(): string;
getInstance(): Element;
getDescriptionForGender(gender: string): string;
static ɵfac: i0.ɵɵFactoryDeclaration<SystelabGenderListBox, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SystelabGenderListBox, "systelab-gender-listbox", never, { "showAll": { "alias": "showAll"; "required": false; }; }, {}, never, never, false, never>;
}
export {};