contact-item.d.ts 407 B

12345678910111213
  1. import { ContactParams } from "./contact-params";
  2. export declare class ContactItem {
  3. readonly data: ContactParams;
  4. readonly id: string;
  5. readonly hash: string;
  6. readonly addrs: string[];
  7. readonly groups: string[];
  8. constructor(props: ContactParams);
  9. matchesAddressOrName(search: string): boolean;
  10. matchesGroup(group: string): boolean;
  11. getFirstEmail(): string | undefined;
  12. }