Skip to content

fix: typescript return null #1470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions projects/lib/src/oauth-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2339,7 +2339,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
/**
* Returns the received claims about the user.
*/
public getIdentityClaims(): Record<string, any> {
public getIdentityClaims(): Record<string, any> | null {
const claims = this._storage.getItem('id_token_claims_obj');
if (!claims) {
return null;
Expand All @@ -2350,7 +2350,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
/**
* Returns the granted scopes from the server.
*/
public getGrantedScopes(): object {
public getGrantedScopes(): object | null {
const scopes = this._storage.getItem('granted_scopes');
if (!scopes) {
return null;
Expand All @@ -2361,7 +2361,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
/**
* Returns the current id_token.
*/
public getIdToken(): string {
public getIdToken(): string | null {
return this._storage ? this._storage.getItem('id_token') : null;
}

Expand All @@ -2375,19 +2375,19 @@ export class OAuthService extends AuthConfig implements OnDestroy {
/**
* Returns the current access_token.
*/
public getAccessToken(): string {
public getAccessToken(): string | null {
return this._storage ? this._storage.getItem('access_token') : null;
}

public getRefreshToken(): string {
public getRefreshToken(): string | null {
return this._storage ? this._storage.getItem('refresh_token') : null;
}

/**
* Returns the expiration date of the access_token
* as milliseconds since 1970.
*/
public getAccessTokenExpiration(): number {
public getAccessTokenExpiration(): number | null {
if (!this._storage.getItem('expires_at')) {
return null;
}
Expand All @@ -2406,7 +2406,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
* Returns the expiration date of the id_token
* as milliseconds since 1970.
*/
public getIdTokenExpiration(): number {
public getIdTokenExpiration(): number | null {
if (!this._storage.getItem('id_token_expires_at')) {
return null;
}
Expand Down