From 98cc3edb015bad08485da47e60c2b84896dc458b Mon Sep 17 00:00:00 2001 From: ailurux Date: Thu, 15 Aug 2024 13:09:38 +1000 Subject: [PATCH] Add luals-stub for queue open_playlist --- luals-stubs/queue.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/luals-stubs/queue.lua b/luals-stubs/queue.lua index 353b4823..895b4c78 100644 --- a/luals-stubs/queue.lua +++ b/luals-stubs/queue.lua @@ -19,6 +19,11 @@ local queue = {} --- @param val TrackId|Iterator function queue.add(val) end +--- Opens a playlist file from a filepath +--- This will replace the existing queue +--- @param filepath string +function queue.open_playlist(filepath) end + --- Removes all tracks from the queue. function queue.clear() end