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

getStreamer

API -

return function()
    local app = getApp();
    local user = app.getStreamerUser();
    if user == nil then
        return;
    end
    
    log(user.displayName .. ' is the streamer.');
end

Last updated