Skip to content

Commit

Permalink
fix(biocatch): updateCustomerSessionID argument can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
antonzy committed May 14, 2019
1 parent 7afed90 commit 9804476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/biocatch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class BioCatch extends IonicNativePlugin {
* @return {Promise<void>} Returns a promise
*/
@Cordova()
updateCustomerSessionID(customerSessionID: string): Promise<void> {
updateCustomerSessionID(customerSessionID: string | null): Promise<void> {
return;
}
}

0 comments on commit 9804476

Please sign in to comment.