UNPKG

@neocomplexx/ngx-neo-completer

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.0.5.

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; }