getIntercomSettings method

JsObject getIntercomSettings()

get the window.IntercomSettings

Implementation

js.JsObject getIntercomSettings() {
  if (js.context.hasProperty('intercomSettings')) {
    return js.JsObject.fromBrowserObject(js.context['intercomSettings']);
  }

  return js.JsObject.jsify({});
}