Merge pull request #407 from hocsinhgioitoan/main
Doc: fix sleep return type
This commit is contained in:
commit
99882764ec
@ -980,7 +980,7 @@ class Client extends BaseClient {
|
|||||||
/**
|
/**
|
||||||
* Makes waiting time for Client.
|
* Makes waiting time for Client.
|
||||||
* @param {number} miliseconds Sleeping time as milliseconds.
|
* @param {number} miliseconds Sleeping time as milliseconds.
|
||||||
* @returns {Promise<void>}
|
* @returns {Promise<void> | null}
|
||||||
*/
|
*/
|
||||||
sleep(miliseconds) {
|
sleep(miliseconds) {
|
||||||
return typeof miliseconds === 'number' ? new Promise(r => setTimeout(r, miliseconds)) : null;
|
return typeof miliseconds === 'number' ? new Promise(r => setTimeout(r, miliseconds)) : null;
|
||||||
|
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
@ -878,7 +878,7 @@ export class Client<Ready extends boolean = boolean> extends BaseClient {
|
|||||||
public sweepMessages(lifetime?: number): number;
|
public sweepMessages(lifetime?: number): number;
|
||||||
public customStatusAuto(client?: this): undefined;
|
public customStatusAuto(client?: this): undefined;
|
||||||
public authorizeURL(url: string, options?: object): Promise<boolean>;
|
public authorizeURL(url: string, options?: object): Promise<boolean>;
|
||||||
public sleep(milliseconds: number): Promise<void>;
|
public sleep(milliseconds: number): Promise<void> | null;
|
||||||
public toJSON(): unknown;
|
public toJSON(): unknown;
|
||||||
|
|
||||||
public on<K extends keyof ClientEvents>(event: K, listener: (...args: ClientEvents[K]) => Awaitable<void>): this;
|
public on<K extends keyof ClientEvents>(event: K, listener: (...args: ClientEvents[K]) => Awaitable<void>): this;
|
||||||
|
Loading…
Reference in New Issue
Block a user