Urara-Blog/node_modules/.pnpm-store/v3/files/5c/97928c9aca6c80b208ea5b6ef0f73d157e447ea3d7a9797a33a1d958dd0195c7390d11576dad0f8224d3db8edc7454d1d60b8f2397afe40dfab1040fbfef5b
2022-08-14 01:14:53 +08:00

16 lines
538 B
Text

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 };