Skip to content
Merged
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
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ export type BaseAuthConfiguration =
serviceConfiguration?: ServiceConfiguration;
};

export interface AuthConfiguration extends BaseAuthConfiguration {
export type AuthConfiguration = BaseAuthConfiguration & {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me. Good catch!

clientSecret?: string;
scopes: string[];
redirectUrl: string;
additionalParameters?: { [name: string]: string };
dangerouslyAllowInsecureHttpRequests?: boolean;
}
};

export interface AuthorizeResult {
accessToken: string;
Expand Down