summaryrefslogtreecommitdiff
path: root/ldoc-stubs/playback.lua
diff options
context:
space:
mode:
authorailurux <ailuruxx@gmail.com>2024-04-02 11:13:50 +1100
committerailurux <ailuruxx@gmail.com>2024-04-02 11:13:50 +1100
commite20ebe7574db5aedc73f07b7bb3a0a01eae93c84 (patch)
tree34c93ec8a80e282f3ce3e47dd60c41e46de0f8b3 /ldoc-stubs/playback.lua
parenta750af35aa6afda40aadca8f7cf8db75f41a43b2 (diff)
parent0d0c4b2307cac8436fea7276956f293262b265ed (diff)
downloadtangara-fw-e20ebe7574db5aedc73f07b7bb3a0a01eae93c84.tar.gz
Merge branch 'main' into lua-volume
Diffstat (limited to 'ldoc-stubs/playback.lua')
-rw-r--r--ldoc-stubs/playback.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/ldoc-stubs/playback.lua b/ldoc-stubs/playback.lua
deleted file mode 100644
index 07ed65f6..00000000
--- a/ldoc-stubs/playback.lua
+++ /dev/null
@@ -1,19 +0,0 @@
---- Properties for interacting with the audio playback system
--- @module playback
-
-local playback = {}
-
---- Whether or not any audio is *allowed* to be played. If there is a current track, then this is essentially an indicator of whether playback is paused or unpaused.
--- @see types.Property
-playback.playing = types.Property
-
---- Rich information about the currently playing track.
--- @see types.Property
--- @see types.Track
-playback.track = types.Property
-
---- The current playback position within the current track, in seconds.
--- @see types.Property
-playback.position = types.Property
-
-return playback