mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-20 04:29:15 +00:00
feat: Get corresponding Chat from Contact object and vice versa
close #269
This commit is contained in:
7
index.d.ts
vendored
7
index.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user