mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
start with streamer
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export default class RequestRangeBytes {
|
||||
readonly end: number;
|
||||
readonly start: number;
|
||||
|
||||
constructor(start: number, end: number) {
|
||||
this.start = start;
|
||||
this.end = end;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user