fix(biocatch): updateCustomerSessionID argument can be null

This commit is contained in:
Anton Zagrebelny 2019-05-14 19:00:24 +03:00
parent 7afed90b56
commit 980447673b

View File

@ -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;
}
}