From 32b0d71af7e3afc401898753b1e8cb1e991b70e7 Mon Sep 17 00:00:00 2001 From: Kevin Novak Date: Wed, 14 Apr 2021 18:33:59 -0400 Subject: [PATCH] feat(typings): add ShardingManager.shardList to type definitions (#5446) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 03051b384..82816d026 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1424,6 +1424,7 @@ declare module 'discord.js' { public shards: Collection; public token: string | null; public totalShards: number | 'auto'; + public shardList: number[] | 'auto'; public broadcast(message: any): Promise; public broadcastEval(script: string): Promise; public broadcastEval(script: string, shard: number): Promise;