diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
commit | 1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4 (patch) | |
tree | aa4ae8c7e2315d6ebd6500000a17d3a1c45b4c87 /src/lib/extensions/discord.js/BushVoiceState.ts | |
parent | 153a40fbcd314459f94d9a2b44d3466c930c4e35 (diff) | |
download | tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.gz tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.bz2 tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.zip |
cleaned up lib imports
Diffstat (limited to 'src/lib/extensions/discord.js/BushVoiceState.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushVoiceState.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/extensions/discord.js/BushVoiceState.ts b/src/lib/extensions/discord.js/BushVoiceState.ts index d93fa13..1d00e20 100644 --- a/src/lib/extensions/discord.js/BushVoiceState.ts +++ b/src/lib/extensions/discord.js/BushVoiceState.ts @@ -1,8 +1,5 @@ import { VoiceState } from 'discord.js'; -import { BushGuild } from './BushGuild'; -import { BushGuildMember } from './BushGuildMember'; -import { BushStageChannel } from './BushStageChannel'; -import { BushVoiceChannel } from './BushVoiceChannel'; +import { BushGuild, BushGuildMember, BushStageChannel, BushVoiceChannel } from '..'; export class BushVoiceState extends VoiceState { public readonly channel: BushVoiceChannel | BushStageChannel | null; |