the-moby-effect
Version:
Moby/Docker API client built using effect-ts
28 lines • 764 B
JavaScript
/**
* Convenance utilities for Docker input and output streams.
*
* @since 1.0.0
*/
import * as internal from "./internal/convey/sinks.js";
/**
* Waits for the progress stream to complete and returns the result.
*
* @since 1.0.0
* @category Conveyance Sinks
*/
export const waitForProgressToComplete = internal.waitForProgressToComplete;
/**
* Consumes the progress stream and logs it to the console.
*
* @since 1.0.0
* @category Conveyance Sinks
*/
export const followProgressSink = internal.followProgressSink;
/**
* Tracks the progress stream in the console and returns the result.
*
* @since 1.0.0
* @category Conveyance Sinks
*/
export const followProgressInConsole = internal.followProgressInConsole;
//# sourceMappingURL=MobyConvey.js.map