diff options
| author | Max Isom <[email protected]> | 2020-05-30 21:37:40 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2020-05-30 21:37:40 -0500 |
| commit | 58fcc481ba0390bf60327382870602807b27bfe5 (patch) | |
| tree | 2400072e270636db51aa2b857010d40572b6e135 /src | |
| parent | 7fcd9a6a7de6704a9a9e357b792a8ed52b0c4edc (diff) | |
| download | muse-58fcc481ba0390bf60327382870602807b27bfe5.tar.xz muse-58fcc481ba0390bf60327382870602807b27bfe5.zip | |
Bump dependencies
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 | ||||
| -rw-r--r-- | src/packages.d.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts index b2ee442..6ef3575 100644 --- a/src/index.ts +++ b/src/index.ts @@ -21,5 +21,5 @@ const spotify = container.get<Spotify>(TYPES.Lib.Spotify); await sequelize.sync({}); - bot.listen(); + await bot.listen(); })(); diff --git a/src/packages.d.ts b/src/packages.d.ts index 14bbeed..ec0e629 100644 --- a/src/packages.d.ts +++ b/src/packages.d.ts @@ -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' { |
