Fix compilation error.

This commit is contained in:
SukantGujar
2019-03-11 13:49:38 +05:30
parent 2d2d20f6e9
commit 33a4b1aea4
5 changed files with 12 additions and 9 deletions

View File

@@ -1,10 +1,6 @@
import { Logger } from "./Logger";
import { RangeParserError } from "./RangeParserError";
export type Range = {
start: number;
end: number;
};
import { Range } from "./Range";
const rangeRegEx = /bytes=([0-9]*)-([0-9]*)/;