Bump dependencies

This commit is contained in:
Max Isom 2020-05-30 21:37:40 -05:00
parent 7fcd9a6a7d
commit 58fcc481ba
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
4 changed files with 3635 additions and 24 deletions

View file

@ -21,5 +21,5 @@ const spotify = container.get<Spotify>(TYPES.Lib.Spotify);
await sequelize.sync({});
bot.listen();
await bot.listen();
})();

2
src/packages.d.ts vendored
View file

@ -11,7 +11,7 @@ declare module 'ytsr' {
items: VideoResult[];
}
export default function (search: string, options: object): Promise<SearchResult>;
export default function (search: string, options: Record<string, unknown>): Promise<SearchResult>;
}
declare module 'array-shuffle' {