From 9e4fd891d59ca3f6ef012619fb332e20e2cd2e09 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Sat, 21 Oct 2017 10:51:01 +0200 Subject: [PATCH] fix(webpack): `MultiCompiler` extends `Tapable` https://github.com/webpack/webpack/blob/69e0844028950e1316fb4ed9f4ac4593ecc205b3/lib/MultiCompiler.js#L12 --- types/webpack/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/webpack/index.d.ts b/types/webpack/index.d.ts index b99f489cec..b4e6cbfded 100644 --- a/types/webpack/index.d.ts +++ b/types/webpack/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for webpack 3.0 +// Type definitions for webpack 3.8 // Project: https://github.com/webpack/webpack // Definitions by: Qubo // Benjamin Lim @@ -613,7 +613,7 @@ declare namespace webpack { } } - abstract class MultiCompiler implements ICompiler { + abstract class MultiCompiler extends Tapable implements ICompiler { run(handler: MultiCompiler.Handler): void; watch(watchOptions: MultiCompiler.WatchOptions, handler: MultiCompiler.Handler): MultiWatching; }