UNPKG

@nativescript/contacts

Version:

Easy access to iOS and Android contact directory. Pick a contact, update date, or add a new one!

11 lines (10 loc) 514 B
export * from './common'; export * from './models'; export declare class Contacts { static getContact(): Promise<unknown>; static getContactById(id: string, contactFields?: Array<string>): Promise<unknown>; static getContactsByName(searchPredicate: any, contactFields?: Array<string>): Promise<unknown>; static getAllContacts(contactFields?: Array<string>): Promise<unknown>; static getGroups(name: string): Promise<unknown>; static getContactsInGroup(groupId: string): Promise<unknown>; }