File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -957,4 +957,4 @@ InstabugModule.Chats = Chats;
957
957
InstabugModule . Replies = Replies ;
958
958
InstabugModule . CrashReporting = CrashReporting ;
959
959
960
- module . exports = InstabugModule ;
960
+ export default InstabugModule ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ let { Instabug } = NativeModules;
10
10
* BugReporting
11
11
* @exports BugReporting
12
12
*/
13
- module . exports = {
13
+ export default {
14
14
/**
15
15
* Enables and disables manual invocation and prompt options for bug and feedback.
16
16
* @param {boolean } isEnabled
Original file line number Diff line number Diff line change 7
7
* Chats
8
8
* @exports Chats
9
9
*/
10
- module . exports = {
10
+ export default {
11
11
/**
12
12
* Enables and disables everything related to creating new chats.
13
13
* @param {boolean } isEnabled
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ let { Instabug } = NativeModules;
6
6
* CrashReporting
7
7
* @exports CrashReporting
8
8
*/
9
- module . exports = {
9
+ export default {
10
10
/**
11
11
* Enables and disables everything related to crash reporting including intercepting
12
12
* errors in the global error handler. It is enabled by default.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ let {Instabug} = NativeModules;
5
5
* FeatureRequests
6
6
* @exports FeatureRequests
7
7
*/
8
- module . exports = {
8
+ export default {
9
9
10
10
/**
11
11
* Sets whether users are required to enter an email address or not when
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ let { Instabug } = NativeModules;
6
6
* Replies
7
7
* @exports Replies
8
8
*/
9
- module . exports = {
9
+ export default {
10
10
/**
11
11
* Enables and disables everything related to receiving replies.
12
12
* @param {boolean } isEnabled
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ let { Instabug } = NativeModules;
10
10
* Surveys
11
11
* @exports Surveys
12
12
*/
13
- module . exports = {
13
+ export default {
14
14
/**
15
15
* @summary Sets whether surveys are enabled or not.
16
16
* If you disable surveys on the SDK but still have active surveys on your Instabug dashboard,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ let init = () => {
42
42
global . ErrorUtils . setGlobalHandler ( errorHandler ) ;
43
43
} ;
44
44
45
- module . exports = {
45
+ export default {
46
46
parseErrorStack : parseErrorStack ,
47
47
captureJsErrors : init
48
48
} ;
You can’t perform that action at this time.
0 commit comments