We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa33c5 commit 50024deCopy full SHA for 50024de
1 file changed
index.d.ts
@@ -1,7 +1,7 @@
1
export function getAll(callback: (error: any, contacts: Contact[]) => void): void;
2
export function getAllWithoutPhotos(callback: (error: any, contacts: Contact[]) => void): void;
3
export function getContactById(contactId: string, callback: (error: any, contact: Contact) => void): void;
4
-export function getCount(callback: (error: any, count: number) => void): void;
+export function getCount(callback: (count: number) => void): void;
5
export function getPhotoForId(contactId: string, callback: (error: any, photoUri: string) => void): void;
6
export function addContact(contact: Contact, callback: (error?: any) => void): void;
7
export function openContactForm(contact: Contact, callback: (error: any, contact: Contact) => void): void;
0 commit comments