Type alias FrameOpenReason

The different reasons why the frame was opened:

  • OPEN_ADDON: The frame was opened because the add-on was selected in the activities panel.

  • START_COLLABORATION: The frame was opened because the local user started a collaboration.

  • JOIN_COLLABORATION: The frame was opened because the user joined a collaboration started by another user.

Signature

type FrameOpenReason =
  | 'UNKNOWN'
  | 'OPEN_ADDON'
  | 'START_COLLABORATION'
  | 'JOIN_COLLABORATION';