UNPKG
s3-batch-upload
Version:
latest (1.5.2)
1.5.2
1.5.0
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Super fast batched S3 folder uploads from CLI or API.
www.mediamonks.com
mediamonks/s3-batch-upload
s3-batch-upload
/
lib
/
batch.d.ts
8 lines
(7 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
type
Options
<T> = {
concurrency
:
number
;
files
:
Array
<
string
>;
processItem
:
(
file
:
string
) =>
Promise
<T>;
onProgress
:
() =>
void
; };
export
default
function
streamBatch<T>({concurrency, files, processItem, onProgress}:
Options
<T>):
Promise
<T[]>;