@types/loadable__webpack-plugin
Advanced tools
Comparing version 5.7.2 to 5.7.3
@@ -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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
4415
0
55