Skip to content

Commit

Permalink
chore: fix failing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Dec 22, 2024
1 parent 6c9e5e7 commit f4f4595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Shoukaku.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// eslint-disable-next-line import-x/no-cycle
import { Connector } from './connectors/Connector';
// eslint-disable-next-line import-x/no-cycle
import { ShoukakuDefaults, State, VoiceState } from './Constants';
import { ShoukakuDefaults, VoiceState } from './Constants';
// eslint-disable-next-line import-x/no-cycle
import { Connection } from './guild/Connection';
// eslint-disable-next-line import-x/no-cycle
Expand Down
11 changes: 7 additions & 4 deletions src/node/Node.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { IncomingMessage } from 'http';
import { NodeOption, Shoukaku, ShoukakuEvents } from '../Shoukaku';
import Websocket from 'ws';
// eslint-disable-next-line import-x/no-cycle
import { OpCodes, ShoukakuClientInfo, State, Versions } from '../Constants';
import { TypedEventEmitter, wait } from '../Utils';
import { Rest } from './Rest';
// eslint-disable-next-line import-x/no-cycle
import {
PlayerUpdate,
TrackEndEvent,
Expand All @@ -11,7 +11,10 @@ import {
TrackStuckEvent,
WebSocketClosedEvent
} from '../guild/Player';
import Websocket from 'ws';
import { NodeOption, Shoukaku, ShoukakuEvents } from '../Shoukaku';
import { TypedEventEmitter, wait } from '../Utils';
// eslint-disable-next-line import-x/no-cycle
import { Rest } from './Rest';

export interface Ready {
op: OpCodes.READY;
Expand Down

0 comments on commit f4f4595

Please sign in to comment.