UNPKG

ng2-completer

Version:

angular autocomplete/typeahead component

14 lines (13 loc) 304 B
import { OnInit } from "@angular/core"; export interface MatchPart { isMatch: boolean; text: string; } export declare class CompleterListItemCmp implements OnInit { text: string; searchStr: string; matchClass: string; type: string; parts: MatchPart[]; ngOnInit(): void; }