bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
20 lines (19 loc) • 1.12 kB
TypeScript
import { ChangeDetectorRef, EventEmitter } from "@angular/core";
import { AyudaService } from "../../service/ayuda.service";
import { BitCustomComponent } from "./bit-custom.component";
import * as i0 from "@angular/core";
export declare const CUSTOM_INPUT_AUTOCOMPLETE_CONTROL_VALUE_ACCESSOR: any;
export declare class BitAutoCompleteComponent extends BitCustomComponent {
protected ayudaService: AyudaService;
protected changeDetectorRef: ChangeDetectorRef;
suggestions: any[];
suggestionField: string;
multiple: boolean;
completeMethod: EventEmitter<string>;
onSelect: EventEmitter<string>;
constructor(ayudaService: AyudaService, changeDetectorRef: ChangeDetectorRef);
search(event: any): void;
selectValue(event: any): void;
static ɵfac: i0.ɵɵFactoryDef<BitAutoCompleteComponent, never>;
static ɵcmp: i0.ɵɵComponentDefWithMeta<BitAutoCompleteComponent, "bit-autocomplete", never, { "suggestions": "suggestions"; "suggestionField": "suggestionField"; "multiple": "multiple"; }, { "completeMethod": "completeMethod"; "onSelect": "onSelect"; }, never, ["*"]>;
}