Skip to content

Commit deeb5fd

Browse files
PeterKottaskadikraman
authored andcommitted
Typings fix (#60)
* Fixed typings * Extra 'OR' removed * Reverted what was intentional, not in fact a bug
1 parent 851393b commit deeb5fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ export type BaseAuthConfiguration =
1717
serviceConfiguration?: ServiceConfiguration;
1818
};
1919

20-
export interface AuthConfiguration extends BaseAuthConfiguration {
20+
export type AuthConfiguration = BaseAuthConfiguration & {
2121
clientSecret?: string;
2222
scopes: string[];
2323
redirectUrl: string;
2424
additionalParameters?: { [name: string]: string };
2525
dangerouslyAllowInsecureHttpRequests?: boolean;
26-
}
26+
};
2727

2828
export interface AuthorizeResult {
2929
accessToken: string;

0 commit comments

Comments
 (0)