File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1- pod 'Sentry' , :git => 'https://github.com/getsentry/sentry-cocoa.git' , :tag => '4.4.3 '
1+ pod 'Sentry' , :git => 'https://github.com/getsentry/sentry-cocoa.git' , :tag => '4.5.0 '
Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ import { NativescriptOptions } from './backend';
44export namespace NSSentry {
55 function fetchRelease ( ) ;
66 function sendEvent ( event : Event ) : Promise < Response > ;
7+ // function captureException(exception: any /* nativeException*/): Promise<Response>;
78 function startWithDsnString ( dsn : string , options : NativescriptOptions ) : Promise < Response > ;
89 function setLogLevel ( level : number ) ;
910 function crash ( ) ;
11+ function flush ( timeout : number ) ;
1012 function deviceContexts ( ) : Promise < any > ;
1113 const nativeClientAvailable : boolean ;
1214 const nativeTransport : boolean ;
Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ export namespace NSSentry {
6565 export function crash ( ) {
6666 SentryClient . sharedClient . crash ( ) ;
6767 }
68+ export function flush ( timeout : number ) {
69+ // SentryClient.sharedClient.flush(timeout);
70+ }
6871 function toJsObject ( objCObj ) {
6972 if ( objCObj === null || typeof objCObj !== 'object' ) {
7073 return objCObj ;
You can’t perform that action at this time.
0 commit comments