remove unnecessary maybe type union
This commit is contained in:
		@@ -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
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user