This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -75,3 +75,5 @@ export declare function setScreenName(options: SetScreenNameOptions): Promise<vo
7575export declare function setAnalyticsCollectionEnabled ( enabled : boolean ) : void ;
7676
7777export declare function setSessionTimeoutDuration ( seconds : number ) : void ;
78+
79+ export declare function iOSHandleOpenURL ( url : any /* NSURL */ ) : void ;
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export function logComplexEvent(options: LogComplexEventOptions): Promise<void>
125125 for ( let p in options . parameters ) {
126126 const param = options . parameters [ p ] ;
127127 if ( param . type === "array" && param . value !== undefined ) {
128- const listArray = new Array ( ) ;
128+ const listArray = [ ] ;
129129 for ( let val in param . value ) {
130130 const value = param . value [ val ] ;
131131 if ( value . parameters !== undefined ) {
@@ -220,3 +220,7 @@ export function setAnalyticsCollectionEnabled(enabled: boolean): void {
220220export function setSessionTimeoutDuration ( seconds : number ) : void {
221221 FIRAnalytics . setSessionTimeoutInterval ( seconds ) ;
222222}
223+
224+ export function iOSHandleOpenURL ( url : any /* NSURL */ ) : void {
225+ FIRAnalytics . handleOpenURL ( url ) ;
226+ }
You can’t perform that action at this time.
0 commit comments