mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
Add missing properties for webpack
This commit is contained in:
Vendored
+4
-1
@@ -6,7 +6,8 @@
|
||||
declare module "webpack" {
|
||||
namespace webpack {
|
||||
interface Configuration {
|
||||
entry?: string|Entry;
|
||||
entry?: string|string[]|Entry;
|
||||
devtool?: string;
|
||||
output?: Output;
|
||||
module?: Module;
|
||||
plugins?: (Plugin|Function)[];
|
||||
@@ -28,6 +29,8 @@ declare module "webpack" {
|
||||
}
|
||||
|
||||
interface Loader {
|
||||
exclude?: string[];
|
||||
include?: string[];
|
||||
test: RegExp;
|
||||
loader?: string;
|
||||
loaders?: string[];
|
||||
|
||||
Reference in New Issue
Block a user