From aef4e228bbd671e2a5f03e7e66a3902a393c6c69 Mon Sep 17 00:00:00 2001 From: Michael Irwin Date: Fri, 16 Dec 2016 15:55:27 -0500 Subject: [PATCH] Updated GetEventOptions filters to allow string[] --- lib/docker.d.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/docker.d.ts b/lib/docker.d.ts index f81dbf8..218314b 100644 --- a/lib/docker.d.ts +++ b/lib/docker.d.ts @@ -803,16 +803,16 @@ namespace Docker { /** * A json encoded value of the filters (a `map[string][]string`) to process on the event list. * Available filters: - * - `container=`; – container to filter - * - `event=`; – event to filter - * - `image=`; – image to filter - * - `label=`; – image and container label to filter - * - `type=`; – either container or image or volume or network or daemon - * - `volume=`; – volume to filter - * - `network=`; – network to filter - * - `daemon=`; – daemon name or id to filter + * - `container=`; – container to filter + * - `event=`; – event to filter + * - `image=`; – image to filter + * - `label=`; – image and container label to filter + * - `type=`; – either container or image or volume or network or daemon + * - `volume=`; – volume to filter + * - `network=`; – network to filter + * - `daemon=`; – daemon name or id to filter */ - filters?: Dictionary; + filters?: Dictionary; } export interface EventResult {