fix(typings): mark RESTOptions as Partial in ClientOptions (#7349)

This commit is contained in:
Casper
2022-01-26 21:45:25 +01:00
committed by GitHub
parent 11e5e5ac5b
commit e1ecc1a80a

View File

@@ -3553,7 +3553,7 @@ export interface ClientOptions {
waitGuildTimeout?: number;
sweepers?: SweeperOptions;
ws?: WebSocketOptions;
rest?: RESTOptions;
rest?: Partial<RESTOptions>;
}
export type ClientPresenceStatus = 'online' | 'idle' | 'dnd';