fixed type definition errors

This commit is contained in:
2022-02-15 15:24:45 -06:00
parent a3103f73c3
commit c2447b180e
5 changed files with 3 additions and 8 deletions

View File

@@ -1,8 +1,6 @@
import { GuildMember } from 'discord.js';
export interface queueInfoBase {
interface queueInfoBase {
teamsize: number
}
export interface queueInfo extends queueInfoBase {
interface queueInfo extends queueInfoBase {
players: GuildMember[]
}