From 210880114694ef06ffc8a32bee700473279f5c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Mon, 15 Jul 2019 00:27:49 +0200 Subject: [PATCH] Remove type definitions, as they should be generated on publish --- index.d.ts | 70 ------------------------------------------------------ 1 file changed, 70 deletions(-) delete mode 100644 index.d.ts diff --git a/index.d.ts b/index.d.ts deleted file mode 100644 index 585806a..0000000 --- a/index.d.ts +++ /dev/null @@ -1,70 +0,0 @@ -export declare const upAll: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const upMany: (services: string[], options?: IDockerComposeOptions | undefined) => Promise; - -export declare const upOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; - -export declare const kill: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const down: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const stop: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const restartAll: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const restartMany: (services: string[], options?: IDockerComposeOptions | undefined) => Promise; - -export declare const restartOne: (service: string, options?: IDockerComposeOptions | undefined) => Promise; - -export declare const rm: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const exec: (container: string, command: string | string[], options?: IDockerComposeOptions | undefined) => Promise; - -export declare const logs: (services: string | string[], options?: IDockerComposeLogOptions) => Promise; - -export declare const run: (container: string, command: string | string[], options?: IDockerComposeOptions | undefined) => Promise; - -export declare const buildAll: (options?: IDockerComposeBuildOptions) => Promise; - -export declare const buildMany: (services: string[], options?: IDockerComposeBuildOptions) => Promise; - -export declare const buildOne: (service: string, options?: IDockerComposeBuildOptions | undefined) => Promise; - -export declare const config: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const configServices: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const configVolumes: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const ps: (options?: IDockerComposeOptions | undefined) => Promise; - -export declare const push: (options?: IDockerComposePushOptions) => Promise; - -export declare const port: (service: string, containerPort: string | number, options?: IDockerComposeOptions | undefined) => Promise; - -interface IDockerComposeOptions { - cwd?: string; - config?: string | string[]; - log?: boolean; - composeOptions?: string[] | (string | string[])[]; - commandOptions?: string[] | (string | string[])[]; - env?: string; -} - -interface IDockerComposeLogOptions extends IDockerComposeOptions { - follow?: boolean; -} - -interface IDockerComposeBuildOptions extends IDockerComposeOptions { - parallel?: boolean; -} - -interface IDockerComposePushOptions extends IDockerComposeOptions { - ignorePushFailures?: boolean; -} - -interface IDockerComposeResult { - exitCode: number | null; - out: string; - err: string; -}