From 83f55e8b663090df708abfcd68568caa2eb13b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Sun, 26 May 2019 23:10:42 +0200 Subject: [PATCH] Fix declaration for `logs` function --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index ede1e55eb..cb61bdbdd 100644 --- a/index.d.ts +++ b/index.d.ts @@ -20,7 +20,7 @@ export declare function rm(options: IDockerComposeOptions): Promise; -export declare function logs(container: String, command: String, options: IDockerComposeLogOptions): Promise; +export declare function logs(container: String, options: IDockerComposeLogOptions): Promise; export declare function run(service: String, command: String, options: IDockerComposeOptions): Promise;