UNPKG

@signiant/media-shuttle-sdk-base

Version:

The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)

13 lines 372 B
import TransferOptions from './TransferOptions'; import RemoteFile from '../common/RemoteFile'; /** * Options for building the {@link Download} object. */ interface DownloadOptions extends TransferOptions { /** * One or more files to be downloaded. */ files: RemoteFile[]; } export default DownloadOptions; //# sourceMappingURL=DownloadOptions.d.ts.map