From c827b323282e298ff9fa4ad8f997fc846d172ecd Mon Sep 17 00:00:00 2001 From: Caio Henrique Agiani Date: Fri, 28 Aug 2020 23:00:13 -0300 Subject: [PATCH] fix(types): correct response type for message.forward() (#324) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 4001695..d9ffc8c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -488,7 +488,7 @@ declare namespace WAWebJS { /** * Forwards this message to another chat */ - forward: (chat: Chat | string) => Promise, + forward: (chat: Chat | string) => Promise, } /** ID that represents a message */