@signiant/media-shuttle-sdk-base
Version:
The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)
12 lines (11 loc) • 454 B
JavaScript
/* eslint-disable import/first */
/**
* The direction of the transfer where a download supports a transfer to the caller of the SDK while an Upload
* is a transfer from the caller of the SDK to a destination portal.
*/
var TransferDirection;
(function (TransferDirection) {
TransferDirection["DOWNLOAD"] = "download";
TransferDirection["UPLOAD"] = "upload";
})(TransferDirection || (TransferDirection = {}));
export default TransferDirection;