Skip to main content

Overview

MountOptions type represents the configuration options for mounting the SDK to a DOM element. The code snippet below shows how to use the MountOptions type to create a mount options object.
JavaScript
type MountOptions = {
  rootElement: HTMLElement;
  encounter: Encounter;
  uiOptions?: UIOptions;
  ambientOptions?: AmbientOptions;
};

Properties