contact-params.d.ts 266 B

1234567891011121314
  1. export interface ContactParams {
  2. id: string;
  3. hash: string;
  4. name: string;
  5. addrs: string[];
  6. me: boolean;
  7. groups: string[];
  8. alternateNames: string[];
  9. notes: string;
  10. lastSent?: Date;
  11. lastReceived?: Date;
  12. lastChanged?: Date;
  13. }