Skip to content

Commit 523c36c

Browse files
committed
ci: test
1 parent ab95010 commit 523c36c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/discord/discord.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type { WebSocketManager } from "@discordjs/ws/dist/index";
21
import {
32
Client,
43
Events,
@@ -26,7 +25,8 @@ const client = new Client({
2625
ws: {
2726
buildStrategy: (manager) => {
2827
return new (class CompressionSimpleShardingStrategy extends SimpleShardingStrategy {
29-
constructor(manager: WebSocketManager) {
28+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
29+
constructor(manager: any) {
3030
manager.options.compression = null;
3131
super(manager);
3232
}

0 commit comments

Comments
 (0)