Skip to main content

Overview

UIOptions type represents the user interface configuration options for the SDK. The code snippet below shows how to use the UIOptions type to create a ui options object.
JavaScript
type UIOptions = {
  showCloseButton?: boolean;
  showCreateEmptyNoteButton?: boolean;
  sectionEditing?: SectionEditingOptions;
  showStartAmbientButton?: boolean;
};

Properties