Skip to content

Commit ba5d4aa

Browse files
Fixed typing issue
Typing issue fixed as mentioned in #146 (comment) and #121
1 parent db30f10 commit ba5d4aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ interface IOptions {
1717
ios: {
1818
appName: string,
1919
imageName?: string,
20-
supportsVideo: false,
21-
maximumCallGroups: '1',
22-
maximumCallsPerCallGroup: '1'
20+
supportsVideo?: boolean,
21+
maximumCallGroups?: string,
22+
maximumCallsPerCallGroup?: string,
2323
ringtoneSound?: string,
2424
},
2525
android: {

0 commit comments

Comments
 (0)