docs: update

This commit is contained in:
Elysia
2023-04-03 17:52:24 +07:00
parent ef7fb433ba
commit 402be66265
3 changed files with 9 additions and 3 deletions

4
typings/index.d.ts vendored
View File

@@ -177,8 +177,8 @@ import {
// @ts-ignore
//#region Classes
export class SessionManager extends CachedManager {
constructor(client: Client, iterable?: Iterable<unknown>);
export class SessionManager extends CachedManager<string, Session, any> {
private constructor(client: Client, iterable: Iterable<any>);
public fetch(): Promise<SessionManager>;
public logoutAllDevices(mfaCode?: string): Promise<undefined>;
}