|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
538 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | import '../_version.js';
|
|---|
| 2 | /**
|
|---|
| 3 | * @param {Blob} blob A source blob.
|
|---|
| 4 | * @param {number} [start] The offset to use as the start of the
|
|---|
| 5 | * slice.
|
|---|
| 6 | * @param {number} [end] The offset to use as the end of the slice.
|
|---|
| 7 | * @return {Object} An object with `start` and `end` properties, reflecting
|
|---|
| 8 | * the effective boundaries to use given the size of the blob.
|
|---|
| 9 | *
|
|---|
| 10 | * @private
|
|---|
| 11 | */
|
|---|
| 12 | declare function calculateEffectiveBoundaries(blob: Blob, start?: number, end?: number): {
|
|---|
| 13 | start: number;
|
|---|
| 14 | end: number;
|
|---|
| 15 | };
|
|---|
| 16 | export { calculateEffectiveBoundaries };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.