UNPKG

258 BTypeScriptView Raw
1/// <reference types="node" />
2import { Writable } from 'stream';
3export declare const upload: ({ dataPath, fileList, write, }: {
4 readonly dataPath: string;
5 readonly fileList: ReadonlyArray<string>;
6 readonly write: Writable;
7}) => Promise<void>;