Skip to content

Commit 7002ea6

Browse files
authored
fix: make the claims key in AuthConfiguration optional
1 parent cd0336d commit 7002ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-app-auth/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export type BaseAuthConfiguration = BaseConfiguration & {
6868
export type AuthConfiguration = BaseAuthConfiguration & {
6969
clientSecret?: string;
7070
scopes: string[];
71-
claims: object,
71+
claims?: object,
7272
redirectUrl: string;
7373
additionalParameters?: BuiltInParameters & { [name: string]: string };
7474
clientAuthMethod?: 'basic' | 'post';

0 commit comments

Comments
 (0)