Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed Nov 2, 2021
1 parent a0c056c commit ac61a78
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/OidcClientSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,18 @@ export class OidcClientSettingsStore {
public readonly response_mode: "query" | "fragment" | undefined;

// behavior flags
public readonly filterProtocolClaims: boolean | undefined;
public readonly loadUserInfo: boolean | undefined;
public readonly filterProtocolClaims: boolean;
public readonly loadUserInfo: boolean;
public readonly staleStateAgeInSeconds: number;
public readonly clockSkewInSeconds: number;
public readonly userInfoJwtIssuer: "ANY" | "OP" | string | undefined;
public readonly mergeClaims: boolean | undefined;
public readonly userInfoJwtIssuer: "ANY" | "OP" | string;
public readonly mergeClaims: boolean;

public readonly stateStore: StateStore;

// extra
public readonly extraQueryParams: Record<string, string | number | boolean> | undefined;
public readonly extraTokenParams: Record<string, any> | undefined;
public readonly extraQueryParams: Record<string, string | number | boolean>;
public readonly extraTokenParams: Record<string, any>;

public constructor({
// metadata related
Expand Down

0 comments on commit ac61a78

Please sign in to comment.