DefinitelyTyped/types/case-sensitive-paths-webpack-plugin/index.d.ts
Max Boguslavsky f8fe502c51 Updated definition of type for case-sensitive-paths-webpack-plugin (#36830)
* updated definition

* added test

* fixed error

* reverted changes not related to pull request
2019-07-12 14:50:28 -07:00

25 lines
727 B
TypeScript

// Type definitions for case-sensitive-paths-webpack-plugin 2.1
// Project: https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme
// Definitions by: Andrew Makarov <https://github.com/r3nya>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { Plugin, Compiler } from 'webpack';
export = CaseSensitivePathsWebpackPlugin;
declare class CaseSensitivePathsWebpackPlugin extends Plugin {
constructor(options?: CaseSensitivePathsWebpackPlugin.Options);
apply(compiler: Compiler): void;
}
declare namespace CaseSensitivePathsWebpackPlugin {
interface Options {
/**
* Show more information
*/
debug?: boolean;
}
}