From ba486f93672225891169e2f6eb15f6bc1aadaf17 Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Thu, 14 Jul 2022 11:24:15 +0530 Subject: [PATCH] feat: include chats.delete in example --- Example/example.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Example/example.ts b/Example/example.ts index 1efe09d..6a358d9 100644 --- a/Example/example.ts +++ b/Example/example.ts @@ -140,6 +140,10 @@ const startSock = async() => { if(events['chats.update']) { console.log(events['chats.update']) } + + if(events['chats.delete']) { + console.log('chats deleted ', events['chats.delete']) + } } )