Skip to content

Commit

Permalink
feat(intercom): added displayCarousel, displayArticle, setBottomPaddi…
Browse files Browse the repository at this point in the history
…ng (#3572)
  • Loading branch information
MaximBelov authored Nov 19, 2020
1 parent 4dda714 commit 68d245e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/@ionic-native/plugins/intercom/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

}

0 comments on commit 68d245e

Please sign in to comment.