From d778019b2e96b22ae08d445dfcfb0e728f802707 Mon Sep 17 00:00:00 2001 From: Mavri <74113150+LeoMavri@users.noreply.github.com> Date: Thu, 14 Apr 2022 08:03:04 +0300 Subject: [PATCH] made intents optional in client constructor --- 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 4874362..b9d5169 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -4159,7 +4159,7 @@ export interface ClientOptions { failIfNotExists?: boolean; userAgentSuffix?: string[]; presence?: PresenceData; - intents: BitFieldResolvable; + intents?: BitFieldResolvable; waitGuildTimeout?: number; sweepers?: SweeperOptions; ws?: WebSocketOptions;