Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fix: spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed Aug 20, 2021
1 parent e120c83 commit 2f623ac
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/SigninResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ export class SigninResponse {
public readonly code: string;

// will be set from ResponseValidator
public state: string | undefined;
public state: string | undefined;

// will be set from ResponseValidator
public error: string | undefined;
public error_description: string | undefined;
public error_uri: string | undefined;
public error: string | undefined;
public error_description: string | undefined;
public error_uri: string | undefined;

// will be set from ResponseValidator
public id_token: string | undefined;
public session_state: string | undefined;
public access_token: string | undefined;
public token_type: string | undefined;
public scope: string | undefined;
public id_token: string | undefined;
public session_state: string | undefined;
public access_token: string | undefined;
public token_type: string | undefined;
public scope: string | undefined;
public expires_at: number | undefined

// will be set from ResponseValidator
Expand Down

0 comments on commit 2f623ac

Please sign in to comment.