Skip to content

Type Alias: HintsState ​

ts
type HintsState = {
  activeId?: string;
  isVisible: boolean;
  mounted: MountedHint[];
  overlayRect?: StageRect;
  popover?: PopoverRenderModel;
  popoverAnchor?: Element | StageRect;
  refreshTick: number;
};

Properties ​

PropertyTypeDescription
activeId?string-
isVisibleboolean-
mountedMountedHint[]-
overlayRect?StageRectThe active element's rect while the overlay is shown.
popover?PopoverRenderModelThe open hint's popover, or undefined.
popoverAnchor?Element | StageRectWhat the popover points at: the element (overlay mode) or the beacon.
refreshTicknumber-

Released under the MIT License.