start with streamer

This commit is contained in:
Jurgis Sakalauskas
2022-12-14 15:55:50 +02:00
parent d999897068
commit df6bf9465f
12 changed files with 263 additions and 38 deletions
@@ -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;
}
}