You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
2 years ago
|
import '../_version.js';
|
||
|
/**
|
||
|
* @param {string} rangeHeader A Range: header value.
|
||
|
* @return {Object} An object with `start` and `end` properties, reflecting
|
||
|
* the parsed value of the Range: header. If either the `start` or `end` are
|
||
|
* omitted, then `null` will be returned.
|
||
|
*
|
||
|
* @private
|
||
|
*/
|
||
|
declare function parseRangeHeader(rangeHeader: string): {
|
||
|
start?: number;
|
||
|
end?: number;
|
||
|
};
|
||
|
export { parseRangeHeader };
|