Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/loadable__webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/loadable__webpack-plugin - npm Package Compare versions

Comparing version 5.7.2 to 5.7.3

6

loadable__webpack-plugin/index.d.ts

@@ -15,3 +15,3 @@ // Type definitions for @loadable/webpack-plugin 5.7

*/
filename?: string;
filename?: string | undefined;

@@ -23,3 +23,3 @@ /**

*/
writeToDisk?: boolean | { filename: string };
writeToDisk?: boolean | { filename: string } | undefined;

@@ -29,3 +29,3 @@ /**

*/
outputAsset?: boolean;
outputAsset?: boolean | undefined;
}

@@ -32,0 +32,0 @@

{
"name": "@types/loadable__webpack-plugin",
"version": "5.7.2",
"version": "5.7.3",
"description": "TypeScript definitions for @loadable/webpack-plugin",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/loadable__webpack-plugin",
"license": "MIT",

@@ -24,4 +25,4 @@ "contributors": [

},
"typesPublisherContentHash": "210b976532ad6becc5168be401e5f1bc299c82e0332f50d8a00efa1d3e6fec44",
"typesPublisherContentHash": "c76eefb06273ed4af97c5e8a417a9953e3a4b5f2202886e36391602179c095c6",
"typeScriptVersion": "3.7"
}

@@ -9,5 +9,43 @@ # Installation

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/loadable__webpack-plugin.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/loadable__webpack-plugin/index.d.ts)
````ts
// Type definitions for @loadable/webpack-plugin 5.7
// Project: https://github.com/smooth-code/loadable-components
// Definitions by: Spencer Miskoviak <https://github.com/skovy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7
import * as webpack from 'webpack';
interface PluginOptions {
/**
* The stats filename.
*
* @default loadable-stats.json
*/
filename?: string | undefined;
/**
* Always write stats file to disk.
*
* @default false
*/
writeToDisk?: boolean | { filename: string } | undefined;
/**
* @default true
*/
outputAsset?: boolean | undefined;
}
declare class LoadablePlugin extends webpack.Plugin {
constructor(options?: PluginOptions);
}
export default LoadablePlugin;
````
### Additional Details
* Last updated: Thu, 25 Mar 2021 20:32:00 GMT
* Last updated: Tue, 06 Jul 2021 22:02:42 GMT
* Dependencies: [@types/webpack](https://npmjs.com/package/@types/webpack)

@@ -14,0 +52,0 @@ * Global values: none

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