From c4b60872aecfdc6610e9b2141a45ea7785820af7 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Sat, 5 Jun 2021 20:13:46 +0200 Subject: [PATCH] feat(dx): add default export --- src/index.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/index.ts b/src/index.ts index 55cd91a..8bfb2c3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -489,3 +489,33 @@ export const version = async function ( return Promise.reject(error) } } + +export default { + upAll, + upMany, + upOne, + down, + stop, + stopOne, + kill, + rm, + exec, + run, + buildAll, + buildMany, + buildOne, + pullAll, + pullMany, + pullOne, + config, + configServices, + configVolumes, + ps, + push, + restartAll, + restartMany, + restartOne, + logs, + port, + version +}