Skip to content

Commit

Permalink
fix(SapphireClient): include Ready generic type from parent Client (
Browse files Browse the repository at this point in the history
  • Loading branch information
Lioness100 committed Oct 23, 2021
1 parent dc9a722 commit 4d528f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/SapphireClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export interface SapphireClientOptions {
* });
* ```
*/
export class SapphireClient extends Client {
export class SapphireClient<Ready extends boolean = boolean> extends Client<Ready> {
/**
* The client's ID, used for the user prefix.
* @since 1.0.0
Expand Down

0 comments on commit 4d528f5

Please sign in to comment.