Plumb queue next+previous through to Lua, incl. with stubs and docs.

This commit is contained in:
Robin Howard
2024-01-23 02:30:18 +00:00
committed by Robin Howard
parent 9b63f14cb8
commit 3f1fadbeef
4 changed files with 32 additions and 6 deletions
+3
View File
@@ -8,4 +8,7 @@
--- @field random Property Determines whether, when progressing to the next track in the queue, the next track will be chosen randomly. The random selection algorithm used is a Miller Shuffle, which guarantees that no repeat selections will be made until every item in the queue has been played. Writeable.
local queue = {}
function queue.next() end
function queue.previous() end
return queue