3
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-04-13 03:23:08 +08:00

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

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