We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851393b commit deeb5fdCopy full SHA for deeb5fd
index.d.ts
@@ -17,13 +17,13 @@ export type BaseAuthConfiguration =
17
serviceConfiguration?: ServiceConfiguration;
18
};
19
20
-export interface AuthConfiguration extends BaseAuthConfiguration {
+export type AuthConfiguration = BaseAuthConfiguration & {
21
clientSecret?: string;
22
scopes: string[];
23
redirectUrl: string;
24
additionalParameters?: { [name: string]: string };
25
dangerouslyAllowInsecureHttpRequests?: boolean;
26
-}
+};
27
28
export interface AuthorizeResult {
29
accessToken: string;
0 commit comments