extend maybe type

This commit is contained in:
mightypanders 2023-04-20 20:54:07 +02:00
parent b01700df6c
commit 3494a6ea14

View File

@ -1,7 +1,7 @@
import { Collection } from "@discordjs/collection"
import { Role } from "discord.js"
export type Maybe<T> = T | undefined
export type Maybe<T> = T | undefined | null
export interface Player {
name: string
}