|
@@ -13,11 +13,13 @@ declare module 'duplicate-package-checker-webpack-plugin';
|
|
|
|
|
|
// Then we expand the definition with the things we use.
|
|
|
declare module 'duplicate-package-checker-webpack-plugin' {
|
|
|
+ import * as webpack from 'webpack';
|
|
|
+
|
|
|
export = DuplicatePackageCheckerWebpackPlugin;
|
|
|
|
|
|
class DuplicatePackageCheckerWebpackPlugin {
|
|
|
constructor(options?: DuplicatePackageCheckerWebpackPlugin.Options);
|
|
|
- apply(compiler: any): void;
|
|
|
+ apply(compiler: webpack.Compiler): void;
|
|
|
}
|
|
|
|
|
|
namespace DuplicatePackageCheckerWebpackPlugin {
|