Streamlabels Module
Module to interact with Streamlabels
Required Permissions: none
This module can be used to interact with Streamlabels. Currently, the ability to reset the streamlabels session is provided.
resetSession method
method
resetSession: () => Promise<boolean>
Resets the Streamlabels session.
Arguments
None
Returns
true
if the Streamlabels session was successfully reset.
Example
streamlabsOBS.v1.StreamLabels.resetSession()
.then(() => { /* session has been reset */ })
.catch(e => { /* handle reset error */ });
Updated almost 6 years ago