|
@@ -2,8 +2,8 @@ import { ContactItem } from "./contact-item";
|
|
|
export declare class ContactBook {
|
|
export declare class ContactBook {
|
|
|
readonly items: ContactItem[];
|
|
readonly items: ContactItem[];
|
|
|
constructor(items: ContactItem[]);
|
|
constructor(items: ContactItem[]);
|
|
|
- getPrimaryEmailAddress(): string;
|
|
|
|
|
- getPrimaryPhoneNumber(): string;
|
|
|
|
|
|
|
+ getPrimaryEmailAddress(): string | undefined;
|
|
|
|
|
+ getPrimaryPhoneNumber(): string | undefined;
|
|
|
getFromPhoneNumbers(): string[];
|
|
getFromPhoneNumbers(): string[];
|
|
|
getFromEmailAddresses(): string[];
|
|
getFromEmailAddresses(): string[];
|
|
|
lookupByAddress(addressType: string, addressValue: string): ContactItem | undefined;
|
|
lookupByAddress(addressType: string, addressValue: string): ContactItem | undefined;
|