fix: imports should be specific

This commit is contained in:
Skillz4Killz
2022-03-06 19:04:31 +00:00
committed by GitHub
parent df97380355
commit 7e69f29217
7 changed files with 23 additions and 15 deletions
+3 -1
View File
@@ -1,4 +1,3 @@
import { GatewayIntents, GatewayPayload, StatusUpdate } from "../types/mod.ts";
import { Collection } from "../util/collection.ts";
import { safeRequestsPerShard } from "./safeRequestsPerShard.ts";
import { closeWS } from "./closeWs.ts";
@@ -21,6 +20,9 @@ import { prepareBuckets, spawnShards } from "./spawnShards.ts";
import { stopGateway } from "./stopGateway.ts";
import { tellWorkerToIdentify } from "./tellWorkerToIdentify.ts";
import { DiscordenoShard } from "./shard.ts";
import { GatewayIntents } from "../types/gateway/gatewayIntents.ts";
import { StatusUpdate } from "../types/gateway/statusUpdate.ts";
import { GatewayPayload } from "../types/gateway/gatewayPayload.ts";
/** Create a new Gateway Manager.
*