Home
last modified time | relevance | path

Searched refs:contactQuery (Results 1 – 5 of 5) sorted by relevance

/expo/packages/expo-contacts/build/
H A DContacts.js43 export async function getContactsAsync(contactQuery = {}) { argument
47 return await ExpoContacts.getContactsAsync(contactQuery);
49 export async function getPagedContactsAsync(contactQuery = {}) { argument
50 const { pageSize, ...nOptions } = contactQuery;
166 export async function writeContactToFileAsync(contactQuery = {}) { argument
170 return await ExpoContacts.writeContactToFileAsync(contactQuery);
H A DContacts.d.ts543 export declare function getContactsAsync(contactQuery?: ContactQuery): Promise<ContactResponse>;
544 export declare function getPagedContactsAsync(contactQuery?: ContactQuery): Promise<ContactResponse…
616 export declare function writeContactToFileAsync(contactQuery?: ContactQuery): Promise<string | unde…
H A DContacts.js.map1contactQuery Object used to query contacts.\n * @return A promise that fulfills with `ContactRespo…
/expo/packages/expo-contacts/src/
H A DContacts.ts595 export async function getContactsAsync(contactQuery: ContactQuery = {}): Promise<ContactResponse> {
599 return await ExpoContacts.getContactsAsync(contactQuery);
603 contactQuery: ContactQuery = {}
605 const { pageSize, ...nOptions } = contactQuery;
734 contactQuery: ContactQuery = {}
739 return await ExpoContacts.writeContactToFileAsync(contactQuery);
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dcontacts.mdx99 ### `Contacts.getContactsAsync(contactQuery)`
102 Contacts.getContactsAsync(contactQuery: ContactQuery): Promise<ContactResponse>
112 | contactQuery | `ContactQuery` | Used to query contacts. |
278 ### `Contacts.writeContactToFileAsync(contactQuery)`
281 Contacts.writeContactToFileAsync(contactQuery: ContactQuery): Promise<string>
290 | contactQuery | `ContactQuery` | Used to query contacts you want to write. |