UNPKG

234 BTypeScriptView Raw
1export declare class TypeaheadMatch {
2 readonly value: string;
3 readonly item: any;
4 protected header: boolean;
5 constructor(item: any, value?: string, header?: boolean);
6 isHeader(): boolean;
7 toString(): string;
8}