Skip to content

Commit fad78dd

Browse files
Fix
1 parent b7b78ee commit fad78dd

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

index.d.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,19 @@ export interface UserSettings {
292292
state: any;
293293
}
294294

295-
export class User extends UserSettings {
295+
export class User {
296296
constructor(settings: UserSettings);
297297

298+
id_token: string;
299+
session_state: any;
300+
access_token: string;
301+
refresh_token: string;
302+
token_type: string;
303+
scope: string;
304+
profile: any;
305+
expires_at: number;
306+
state: any;
307+
298308
toStorageString(): string;
299309

300310
readonly expires_in: number | undefined;

0 commit comments

Comments
 (0)