File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"pretest" : " npm install" ,
8
8
"test" : " grunt test && npm run-script test-typescript" ,
9
- "test-typescript" : " node_modules/typescript/bin/tsc --noEmit typescript/raven-tests.ts"
9
+ "test-typescript" : " node_modules/typescript/bin/tsc --noEmit --noImplicitAny typescript/raven-tests.ts"
10
10
},
11
11
"repository" : {
12
12
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ Raven.captureBreadcrumb({});
59
59
Raven . setRelease ( 'abc123' ) ;
60
60
Raven . setEnvironment ( 'production' ) ;
61
61
62
- Raven . setDataCallback ( function ( data ) { } ) ;
63
- Raven . setDataCallback ( function ( data , original ) { } ) ;
64
- Raven . setShouldSendCallback ( function ( data ) { } ) ;
65
- Raven . setShouldSendCallback ( function ( data , original ) { } ) ;
62
+ Raven . setDataCallback ( function ( data : any ) { } ) ;
63
+ Raven . setDataCallback ( function ( data : any , original : any ) { } ) ;
64
+ Raven . setShouldSendCallback ( function ( data : any ) { } ) ;
65
+ Raven . setShouldSendCallback ( function ( data : any , original : any ) { } ) ;
66
66
67
67
Raven . showReportDialog ( {
68
68
eventId : 'abcdef123456'
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ interface RavenStatic {
211
211
setShouldSendCallback ( data : any , orig ?: any ) : RavenStatic ;
212
212
213
213
/** Show Sentry user feedback dialog */
214
- showReportDialog ( options : Object ) ;
214
+ showReportDialog ( options : Object ) : void ;
215
215
}
216
216
217
217
interface RavenTransportOptions {
You can’t perform that action at this time.
0 commit comments