UNPKG

376 BJavaScriptView Raw
1// @flow
2
3import {
4 NativeModules,
5} from 'react-native';
6
7type FieldType = 'phoneNumbers' | 'emails' | 'addresses';
8
9export async function getContactsAsync(fields: FieldType[] = []) {
10 return await NativeModules.ExponentContacts.getContactsAsync(fields);
11}
12
13export const PHONE_NUMBERS = 'phoneNumbers';
14export const EMAILS = 'emails';
15export const ADDRESSES = 'addresses';