Skip to content

Commit

Permalink
fix(typings): mark RESTOptions as Partial in ClientOptions (#7349)
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Jan 26, 2022
1 parent 11e5e5a commit e1ecc1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3553,7 +3553,7 @@ export interface ClientOptions {
waitGuildTimeout?: number;
sweepers?: SweeperOptions;
ws?: WebSocketOptions;
rest?: RESTOptions;
rest?: Partial<RESTOptions>;
}

export type ClientPresenceStatus = 'online' | 'idle' | 'dnd';
Expand Down

0 comments on commit e1ecc1a

Please sign in to comment.