UNPKG

the-moby-effect

Version:
28 lines 764 B
/** * 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