feat: Get corresponding Chat from Contact object and vice versa

close #269
This commit is contained in:
Pedro Lopez
2020-08-17 23:31:19 -04:00
parent 34aa136bf9
commit 7180beda2e
3 changed files with 26 additions and 0 deletions

7
index.d.ts vendored
View File

@@ -610,6 +610,11 @@ declare namespace WAWebJS {
/** Returns the contact's profile picture URL, if privacy settings allow it */
getProfilePicUrl: () => Promise<string>,
/** Returns the Chat that corresponds to this Contact.
* Will return null when getting chat for currently logged in user.
*/
getChat: () => Promise<Chat>,
}
export interface ContactId {
@@ -688,6 +693,8 @@ declare namespace WAWebJS {
unarchive: () => Promise<void>,
/** Unmutes this chat */
unmute: () => Promise<void>,
/** Returns the Contact that corresponds to this Chat. */
getContact: () => Promise<Contact>,
}
export interface MessageSearchOptions {