remove unnecessary maybe type union
All checks were successful
Compile the repository / compile (pull_request) Successful in 17s
Run unit tests / test (pull_request) Successful in 15s

This commit is contained in:
kenobi 2023-11-25 20:35:15 +01:00
parent a50ac1716f
commit a60fc2db7e

View File

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