Update contacts.ts (#885)

This commit is contained in:
Matt Hill 2016-12-17 18:48:22 -07:00 committed by Ibrahim Hadeed
parent 98d22a3079
commit cabe327e9b

View File

@ -231,7 +231,7 @@ export class ContactOrganization implements IContactOrganization {
export interface IContactFindOptions { export interface IContactFindOptions {
/** The search string used to find navigator.contacts. */ /** The search string used to find navigator.contacts. */
filter?: string; filter?: string;
/** Determines if the find operation returns multiple navigator.contacts. Defaults to true. */ /** Determines if the find operation returns multiple navigator.contacts. Defaults to false. */
multiple?: boolean; multiple?: boolean;
/** Contact fields to be returned back. If specified, the resulting Contact object only features values for these fields. */ /** Contact fields to be returned back. If specified, the resulting Contact object only features values for these fields. */
desiredFields?: string[]; desiredFields?: string[];