feat: Added team creation, closes #22
All checks were successful
Build and Deploy / Deploy Web (push) Successful in 1m1s
Build and Deploy / Deploy Discord Bot (push) Successful in 42s

This commit is contained in:
2023-06-06 14:29:05 +02:00
parent e68097d813
commit 9510e8a407
3 changed files with 30 additions and 0 deletions

View File

@@ -31,4 +31,13 @@ declare global {
connected: boolean,
code: string
}
interface ITeam {
_id: string,
name: string,
color: string,
amount: number,
textChannelId: string,
voiceChannelId: string
}
}