feat(intercom): add displaySurvey (#4292)

This commit is contained in:
MaximBelov
2022-09-05 20:01:03 +03:00
committed by GitHub
parent 620385befc
commit ebdd6e9796
@@ -246,4 +246,14 @@ export class Intercom extends AwesomeCordovaNativePlugin {
setBottomPadding(bottomPadding: string | number): Promise<any> {
return;
}
/**
* Programmatically display a Survey
* @param surveyId {string}
* @returns {Promise<any>} Returns a promise
*/
@Cordova()
displaySurvey(surveyId: string): Promise<any> {
return;
}
}