From ef5ba05996ba45b56dde0f1f624347777b1de0ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Sat, 17 Jul 2021 13:25:05 +0200 Subject: [PATCH] types(Message): mark `#thread` as nullable (#6129) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index b61687fd3..7ab393005 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -950,7 +950,7 @@ export class Message extends Base { public reactions: ReactionManager; public stickers: Collection; public system: boolean; - public thread: ThreadChannel; + public thread: ThreadChannel | null; public tts: boolean; public type: MessageType; public readonly url: string;