diff options
author | metamuffin <metamuffin@disroot.org> | 2024-05-14 00:24:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-05-14 00:24:58 +0200 |
commit | 8752a12e954600152e9eaa60ed29af585ed06c64 (patch) | |
tree | 700fedf7d82e940b256ca828e5c98bd1ce0ada44 /web/script/player/track/mod.ts | |
parent | 07fc74f4d8fcd3137e3cdbc462c06c50acccb31e (diff) | |
download | jellything-8752a12e954600152e9eaa60ed29af585ed06c64.tar jellything-8752a12e954600152e9eaa60ed29af585ed06c64.tar.bz2 jellything-8752a12e954600152e9eaa60ed29af585ed06c64.tar.zst |
better jsp debuggability
Diffstat (limited to 'web/script/player/track/mod.ts')
-rw-r--r-- | web/script/player/track/mod.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/script/player/track/mod.ts b/web/script/player/track/mod.ts index cdb07cc..e165df6 100644 --- a/web/script/player/track/mod.ts +++ b/web/script/player/track/mod.ts @@ -20,5 +20,6 @@ export abstract class PlayerTrack { public buffered = new OVar<BufferRange[]>([]); public abort = new AbortController() async update(_target: number) { } + public abstract debug(): HTMLElement | OVar<HTMLElement> } |