mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-19 07:26:23 +08:00
docs(contacts): hide extra
This commit is contained in:
parent
da28af024c
commit
38cea9da27
@ -31,6 +31,11 @@ export interface IContactProperties {
|
|||||||
/** An array of web pages associated with the contact. */
|
/** An array of web pages associated with the contact. */
|
||||||
urls?: IContactField[];
|
urls?: IContactField[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class Contact {
|
export class Contact {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
@InstanceProperty get id(): string {return; }
|
@InstanceProperty get id(): string {return; }
|
||||||
@ -92,6 +97,10 @@ export interface IContactName {
|
|||||||
/** The contact's suffix (example Esq.). */
|
/** The contact's suffix (example Esq.). */
|
||||||
honorificSuffix?: string;
|
honorificSuffix?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class ContactName implements IContactName {
|
export class ContactName implements IContactName {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
constructor(formatted?: string, familyName?: string, givenName?: string, middleName?: string, honorificPrefix?: string, honorificSuffix?: string) {
|
constructor(formatted?: string, familyName?: string, givenName?: string, middleName?: string, honorificPrefix?: string, honorificSuffix?: string) {
|
||||||
@ -114,6 +123,9 @@ export interface IContactField {
|
|||||||
pref: boolean;
|
pref: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class ContactField implements IContactField {
|
export class ContactField implements IContactField {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
constructor(type?: string, value?: string, pref?: boolean) {
|
constructor(type?: string, value?: string, pref?: boolean) {
|
||||||
@ -143,6 +155,9 @@ export interface IContactAddress {
|
|||||||
country?: string;
|
country?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class ContactAddress implements IContactAddress {
|
export class ContactAddress implements IContactAddress {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
constructor (pref?: boolean,
|
constructor (pref?: boolean,
|
||||||
@ -178,6 +193,9 @@ export interface IContactOrganization {
|
|||||||
title?: string;
|
title?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class ContactOrganization implements IContactOrganization {
|
export class ContactOrganization implements IContactOrganization {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
constructor () {
|
constructor () {
|
||||||
@ -200,6 +218,9 @@ export interface IContactFindOptions {
|
|||||||
desiredFields?: string[];
|
desiredFields?: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
export class ContactFindOptions implements IContactFindOptions {
|
export class ContactFindOptions implements IContactFindOptions {
|
||||||
private _objectInstance: any;
|
private _objectInstance: any;
|
||||||
constructor () {
|
constructor () {
|
||||||
@ -210,6 +231,7 @@ export class ContactFindOptions implements IContactFindOptions {
|
|||||||
@InstanceProperty get desiredFields(): any {return; }
|
@InstanceProperty get desiredFields(): any {return; }
|
||||||
@InstanceProperty get hasPhoneNumber(): boolean {return; }
|
@InstanceProperty get hasPhoneNumber(): boolean {return; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Contacts
|
* @name Contacts
|
||||||
* @description
|
* @description
|
||||||
|
Loading…
x
Reference in New Issue
Block a user