UNPKG

304 BTypeScriptView Raw
1import { OnInit } from "@angular/core";
2export interface MatchPart {
3 isMatch: boolean;
4 text: string;
5}
6export declare class CompleterListItemCmp implements OnInit {
7 text: string;
8 searchStr: string;
9 matchClass: string;
10 type: string;
11 parts: MatchPart[];
12 ngOnInit(): void;
13}