INNER CODE UNIT · TypeScript

openContactForm

morenoh149/react-native-contacts · index.ts:31

async function openContactForm(contact: Partial<Contact>): Promise<Contact> {
  return Contacts.openContactForm(contact);
}

async function openExistingContact(contact: Contact): Promise<Contact> {
  return Contacts.openExistingContact(contact);
}

async function viewExistingContact(contact: {
  recordID: string;
}): Promise<Contact | void> {
  return Contacts.viewExistingContact(contact);
}

async function editExistingContact(contact: Contact): Promise<Contact> {
  return Contacts.editExistingContact(contact);
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…