Socket
Socket
Sign inDemoInstall

@types/webpack-env

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/webpack-env - npm Package Compare versions

Comparing version 1.16.1 to 1.16.2

36

webpack-env/index.d.ts

@@ -73,3 +73,3 @@ // Type definitions for webpack (module API) 1.16

children: NodeModule[];
hot?: Hot;
hot?: Hot | undefined;
}

@@ -95,15 +95,15 @@ type ModuleId = string|number;

*/
dependencyId?: number;
dependencyId?: number | undefined;
/**
* For declined/accepted/unaccepted: the chain from where the update was propagated.
*/
chain?: number[];
chain?: number[] | undefined;
/**
* For declined: the module id of the declining parent
*/
parentId?: number;
parentId?: number | undefined;
/**
* For accepted: the modules that are outdated and will be disposed
*/
outdatedModules?: number[];
outdatedModules?: number[] | undefined;
/**

@@ -114,7 +114,7 @@ * For accepted: The location of accept handlers that will handle the update

[dependencyId: number]: number[];
};
} | undefined;
/**
* For errors: the thrown error
*/
error?: Error;
error?: Error | undefined;
/**

@@ -124,3 +124,3 @@ * For self-accept-error-handler-errored: the error thrown by the module

*/
originalError?: Error;
originalError?: Error | undefined;
}

@@ -241,35 +241,35 @@

*/
ignoreUnaccepted?: boolean;
ignoreUnaccepted?: boolean | undefined;
/**
* Ignore changes made to declined modules.
*/
ignoreDeclined?: boolean;
ignoreDeclined?: boolean | undefined;
/**
* Ignore errors throw in accept handlers, error handlers and while reevaluating module.
*/
ignoreErrored?: boolean;
ignoreErrored?: boolean | undefined;
/**
* Notifier for declined modules.
*/
onDeclined?: (info: HotNotifierInfo) => void;
onDeclined?: ((info: HotNotifierInfo) => void) | undefined;
/**
* Notifier for unaccepted modules.
*/
onUnaccepted?: (info: HotNotifierInfo) => void;
onUnaccepted?: ((info: HotNotifierInfo) => void) | undefined;
/**
* Notifier for accepted modules.
*/
onAccepted?: (info: HotNotifierInfo) => void;
onAccepted?: ((info: HotNotifierInfo) => void) | undefined;
/**
* Notifier for disposed modules.
*/
onDisposed?: (info: HotNotifierInfo) => void;
onDisposed?: ((info: HotNotifierInfo) => void) | undefined;
/**
* Notifier for errors.
*/
onErrored?: (info: HotNotifierInfo) => void;
onErrored?: ((info: HotNotifierInfo) => void) | undefined;
/**
* Indicates that apply() is automatically called by check function
*/
autoApply?: boolean;
autoApply?: boolean | undefined;
}

@@ -350,3 +350,3 @@ /**

*/
webpackHot?: __WebpackModuleApi.Hot;
webpackHot?: __WebpackModuleApi.Hot | undefined;
/**

@@ -353,0 +353,0 @@ * `import.meta.webpack` is the webpack major version as number

{
"name": "@types/webpack-env",
"version": "1.16.1",
"version": "1.16.2",
"description": "TypeScript definitions for webpack (module API)",

@@ -28,4 +28,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-env",

"dependencies": {},
"typesPublisherContentHash": "29a85a223a816786929e47ca44aaef306ad2ada703c3b8415764164f4f1be431",
"typesPublisherContentHash": "af68a51e18402a03b3f2a6e0b9c58dec2530aa1a00d5446793ffe92061e65dc5",
"typeScriptVersion": "3.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Thu, 01 Jul 2021 17:31:37 GMT
* Last updated: Fri, 02 Jul 2021 18:05:28 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `DEBUG`, `__non_webpack_require__`, `__resourceQuery`, `__webpack_chunk_load__`, `__webpack_hash__`, `__webpack_modules__`, `__webpack_nonce__`, `__webpack_public_path__`, `__webpack_require__`, `module`, `process`, `require`

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc