diff --git a/src/lib/structures/Store.ts b/src/lib/structures/Store.ts index 57b183f7..60e01fc8 100644 --- a/src/lib/structures/Store.ts +++ b/src/lib/structures/Store.ts @@ -137,7 +137,7 @@ export class Store extends Collection { * Unloads all pieces from the store. */ public async unloadAll(): Promise { - const promises = []; + const promises: Promise[] = []; for (const piece of this.values()) { promises.push(this.unload(piece)); }