mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* updated definition * added test * fixed error * reverted changes not related to pull request
25 lines
727 B
TypeScript
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;
|
|
}
|
|
}
|