We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b78ee commit fad78ddCopy full SHA for fad78dd
index.d.ts
@@ -292,9 +292,19 @@ export interface UserSettings {
292
state: any;
293
}
294
295
-export class User extends UserSettings {
+export class User {
296
constructor(settings: UserSettings);
297
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
+
308
toStorageString(): string;
309
310
readonly expires_in: number | undefined;
0 commit comments