UNPKG

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