@signiant/media-shuttle-sdk
Version:
The SDK for supporting file transfer to and from Media Shuttle
12 lines • 368 B
TypeScript
declare enum PlatformStatus {
IN_PROGRESS = "IN_PROGRESS",
COMPLETED = "COMPLETED",
ERROR = "ERROR",
/**
* Of note, we should make an effort to use CANCELED (one 'L') on anything caller facing as
* that is the American spelling.
*/
CANCELLED = "CANCELLED"
}
export default PlatformStatus;
//# sourceMappingURL=PlatformStatus.d.ts.map