Index data of an address book

interface AddressBook {
    contacts: Contact[];
    groups: Group[];
    title: string;
    uri: string;
}

Properties

contacts: Contact[]
groups: Group[]
title: string
uri: string