Skip to content

Commit 68d245e

Browse files
authored
feat(intercom): added displayCarousel, displayArticle, setBottomPadding (#3572)
1 parent 4dda714 commit 68d245e

File tree

1 file changed

+31
-0
lines changed
  • src/@ionic-native/plugins/intercom

1 file changed

+31
-0
lines changed

src/@ionic-native/plugins/intercom/index.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,35 @@ export class Intercom extends IonicNativePlugin {
214214
sendPushTokenToIntercom(token: string): Promise<any> {
215215
return;
216216
}
217+
218+
/**
219+
*
220+
* @param carouselId {string}
221+
* @return {Promise<any>} Returns a promise
222+
*/
223+
@Cordova()
224+
displayCarousel(carouselId: string): Promise<any> {
225+
return;
226+
}
227+
228+
/**
229+
*
230+
* @param articleId {string}
231+
* @return {Promise<any>} Returns a promise
232+
*/
233+
@Cordova()
234+
displayArticle(articleId: string): Promise<any> {
235+
return;
236+
}
237+
238+
/**
239+
*
240+
* @param bottomPadding {string | number}
241+
* @return {Promise<any>} Returns a promise
242+
*/
243+
@Cordova()
244+
setBottomPadding(bottomPadding: string | number): Promise<any> {
245+
return;
246+
}
247+
217248
}

0 commit comments

Comments
 (0)