DefinitelyTyped/webpack-fail-plugin/index.d.ts
Andy 8841dfc744 Use index.d.ts only (not foo/foo.d.ts) (#12834)
* Use index.d.ts only (not foo/foo.d.ts)

* Convert more packages

* Remove unnecessary references
2016-11-21 12:58:06 -08:00

18 lines
567 B
TypeScript

// Type definitions for webpack-fail-plugin v1.0.5
// Project: https://github.com/TiddoLangerak/webpack-fail-plugin
// Definitions by: Simon Hartcher <https://github.com/deevus>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
///<reference types="webpack" />
declare module "webpack-fail-plugin" {
import {Plugin} from "webpack";
/**
* Webpack plugin that will make the process return status code 1 when it finishes with errors in single-run mode.
*/
function WebpackFailPlugin(): Plugin;
export = WebpackFailPlugin;
}