feat(intercom): added displayCarousel, displayArticle, setBottomPadding (#3572)

This commit is contained in:
MaximBelov 2020-11-19 09:33:45 +02:00 committed by GitHub
parent 4dda714761
commit 68d245ef2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,4 +214,35 @@ export class Intercom extends IonicNativePlugin {
sendPushTokenToIntercom(token: string): Promise<any> {
return;
}
/**
*
* @param carouselId {string}
* @return {Promise<any>} Returns a promise
*/
@Cordova()
displayCarousel(carouselId: string): Promise<any> {
return;
}
/**
*
* @param articleId {string}
* @return {Promise<any>} Returns a promise
*/
@Cordova()
displayArticle(articleId: string): Promise<any> {
return;
}
/**
*
* @param bottomPadding {string | number}
* @return {Promise<any>} Returns a promise
*/
@Cordova()
setBottomPadding(bottomPadding: string | number): Promise<any> {
return;
}
}