From 5952bac1d43072901d24548a088e5b9aae1c3837 Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 31 Jan 2019 11:26:32 +0100 Subject: [PATCH] Update options.client typings - Adds an optional `client.silent` boolean (was forgotten in https://github.com/shellscape/webpack-plugin-serve/pull/97) - Marks all other options in `client` as optional too --- index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index ac07ff4..ed0d8ad 100644 --- a/index.d.ts +++ b/index.d.ts @@ -61,8 +61,9 @@ declare module 'webpack-plugin-serve' { export interface WebpackPluginServeOptions { client?: { - address: string; - retry: boolean; + address?: string; + retry?: boolean; + silent?: boolean; }; compress?: boolean; historyFallback?: boolean | HistoryApiFallbackOptions;