fix(biocatch): start publicKey is now required even if null

This commit is contained in:
Anton Zagrebelny 2019-05-14 18:46:30 +03:00
parent 0634e64b58
commit 7afed90b56

View File

@ -40,7 +40,7 @@ export class BioCatch extends IonicNativePlugin {
* @return {Promise<void>} Returns a promise
*/
@Cordova()
start(customerSessionID: string | null, wupUrl: string, publicKey?: string | null): Promise<void> {
start(customerSessionID: string | null, wupUrl: string, publicKey: string | null): Promise<void> {
return;
}