| 1234567891011121314151617181920212223 |
- import { ContactAddress } from "./contact-address";
- import { ContactParams } from "./contact-params";
- export declare class ContactItem {
- readonly data: ContactParams;
- readonly id: string;
- readonly hash: string;
- addrs: ContactAddress[];
- groups: string[];
- names: string[];
- notes: string;
- canSendFromAddrs: ContactAddress[];
- constructor(props: ContactParams);
- matchesGroup(group: string): boolean;
- getFirstEmail(): string | undefined;
- getFirstPhone(): string | undefined;
- search(search: string): boolean;
- getMatchingAddresses(search: string): ContactAddress[];
- matchesAddressExactly(addressType: string, addressValue: string): boolean;
- generateName(): string;
- getName(): string;
- getData(): ContactParams;
- }
|