mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import webpack = require('webpack');
|
|
|
|
/**
|
|
* This Webpack plugin ensures `npm install <library>` forces a project rebuild.
|
|
*/
|
|
declare class WatchMissingNodeModulesPlugin extends webpack.Plugin {
|
|
constructor(nodeModulesPath: string);
|
|
}
|
|
|
|
export = WatchMissingNodeModulesPlugin;
|