DefinitelyTyped/types/case-sensitive-paths-webpack-plugin/index.d.ts
2018-03-05 18:59:53 -06:00

23 lines
679 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 } from 'webpack';
export = CaseSensitivePathsWebpackPlugin;
declare class CaseSensitivePathsWebpackPlugin extends Plugin {
constructor(options?: CaseSensitivePathsWebpackPlugin.Options);
}
declare namespace CaseSensitivePathsWebpackPlugin {
interface Options {
/**
* Show more information
*/
debug?: boolean;
}
}