🏷️ Fix typings

This commit is contained in:
Androz2091 2020-12-27 00:02:30 +01:00
parent fdf4a592d0
commit 79f4d5daac

4
typings/index.d.ts vendored
View file

@ -1,7 +1,7 @@
declare module 'discord-player' { declare module 'discord-player' {
import { EventEmitter } from 'events'; import { EventEmitter } from 'events';
import { Client, Collection, Message, MessageCollector, Snowflake, User, VoiceChannel, VoiceConnection } from 'discord.js'; import { Client, Collection, Message, MessageCollector, Snowflake, User, VoiceChannel, VoiceConnection } from 'discord.js';
import { result as YtplPlaylist } from 'ytpl'; import { Playlist as YTSRPlaylist } from 'youtube-sr';
import { Stream } from 'stream'; import { Stream } from 'stream';
export const version: string; export const version: string;
@ -67,7 +67,7 @@ declare module 'discord-player' {
thumbnail: string; thumbnail: string;
requestedBy: User; requestedBy: User;
} }
type Playlist = YtplPlaylist & CustomPlaylist; type Playlist = YTSRPlaylist & CustomPlaylist;
interface PlayerEvents { interface PlayerEvents {
searchResults: [Message, string, Track[]]; searchResults: [Message, string, Track[]];
searchInvalidResponse: [Message, string, Track[], string, MessageCollector]; searchInvalidResponse: [Message, string, Track[], string, MessageCollector];