Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1203 from StummeJ/release
Browse files Browse the repository at this point in the history
🏷️ fix: Add types for `UserInfoService`
  • Loading branch information
brockallen authored Sep 17, 2020
2 parents d96347e + 89ddd69 commit c08ecc4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,15 @@ export class UserManager extends OidcClient {
events: UserManagerEvents;
}

export class UserInfoService {
constructor(
settings: OidcClientSettings,
JsonServiceCtor?: any,
MetadataServiceCtor?: MetadataServiceCtor
);
getClaims(token: any): Promise<any>;
}

export interface SessionStatus {
/** Opaque session state used to validate if session changed (monitorSession) */
session_state: string;
Expand Down

0 comments on commit c08ecc4

Please sign in to comment.