mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
13 lines
427 B
Lua
13 lines
427 B
Lua
--- Stream player sub-module
|
|
--- Provides controls and overlay components
|
|
---@class StreamPlayerSubModule
|
|
---@field controls fun(show_play?: boolean, show_volume?: boolean, show_fullscreen?: boolean): PlayerControlsConfig
|
|
---@field overlay fun(title: string, subtitle: string): PlayerOverlayComponent
|
|
|
|
local player = {
|
|
controls = require("player.controls"),
|
|
overlay = require("player.overlay")
|
|
}
|
|
|
|
return player
|