This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/workbox-range-requests/utils/calculateEffectiveBoundaries.d.ts
2025-01-13 09:33:52 +03:00

17 lines
538 B
TypeScript

import '../_version.js';
/**
* @param {Blob} blob A source blob.
* @param {number} [start] The offset to use as the start of the
* slice.
* @param {number} [end] The offset to use as the end of the slice.
* @return {Object} An object with `start` and `end` properties, reflecting
* the effective boundaries to use given the size of the blob.
*
* @private
*/
declare function calculateEffectiveBoundaries(blob: Blob, start?: number, end?: number): {
start: number;
end: number;
};
export { calculateEffectiveBoundaries };