fix(intercom): added logout, displayHelpCenter, sendPushTokenToIntercom (#3119)

This commit is contained in:
Daniel Sogl 2019-08-09 11:05:05 +02:00 committed by GitHub
commit 2c0aa4f124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,15 @@ export class Intercom extends IonicNativePlugin {
return;
}
/**
*
* @return {Promise<any>} Returns a promise
*/
@Cordova()
logout(): Promise<any> {
return;
}
/**
*
* @param secureHash {string}
@ -141,6 +150,15 @@ export class Intercom extends IonicNativePlugin {
return;
}
/**
*
* @return {Promise<any>} Returns a promise
*/
@Cordova()
displayHelpCenter(): Promise<any> {
return;
}
/**
*
* @return {Promise<any>} Returns a promise
@ -188,4 +206,15 @@ export class Intercom extends IonicNativePlugin {
return;
}
/**
*
* @param token {string}
* @return {Promise<any>} Returns a promise
*/
@Cordova()
sendPushTokenToIntercom(token: string): Promise<any> {
return;
}
}