@signiant/media-shuttle-sdk
Version:
The SDK for supporting file transfer to and from Media Shuttle
13 lines (12 loc) • 459 B
JavaScript
var PlatformStatus;
(function (PlatformStatus) {
PlatformStatus["IN_PROGRESS"] = "IN_PROGRESS";
PlatformStatus["COMPLETED"] = "COMPLETED";
PlatformStatus["ERROR"] = "ERROR";
/**
* Of note, we should make an effort to use CANCELED (one 'L') on anything caller facing as
* that is the American spelling.
*/
PlatformStatus["CANCELLED"] = "CANCELLED";
})(PlatformStatus || (PlatformStatus = {}));
export default PlatformStatus;