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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
}