Type alias VcardContact

VcardContact: {
    addr: string;
    color: string;
    displayName: string;
    key: string | null;
    profileImage: string | null;
    timestamp: I64 | null;
}

Type declaration

  • addr: string

    Email address.

  • color: string

    Contact color as hex string.

  • displayName: string

    The contact's name, or the email address if no name was given.

  • key: string | null

    Public PGP key in Base64.

  • profileImage: string | null

    Profile image in Base64.

  • timestamp: I64 | null

    Last update timestamp.

Generated using TypeDoc