- import { ContactParams } from "./contact-params";
- export declare class ContactItem {
- readonly data: ContactParams;
- readonly id: string;
- readonly hash: string;
- readonly addrs: string[];
- readonly groups: string[];
- constructor(props: ContactParams);
- matchesAddressOrName(search: string): boolean;
- matchesGroup(group: string): boolean;
- getFirstEmail(): string | undefined;
- }
|