For the complete documentation index, see llms.txt. This page is also available as Markdown.

captionsEnabled

Emitted when the local user opens the captions panel.

Sample payload

{
  "type": "captionsEnabled"
}

Sample subscription code

sambaFrame.on('captionsEnabled', (event) => {
  console.log('Local user enabled captions');
});

Last updated