@types/mini-css-extract-plugin
Advanced tools
@@ -41,7 +41,7 @@ // Type definitions for mini-css-extract-plugin 2.0 | ||
| */ | ||
| filename?: Required<Configuration>['output']['filename']; | ||
| filename?: Required<Configuration>['output']['filename'] | undefined; | ||
| /** | ||
| * Works like [`output.chunkFilename`](https://webpack.js.org/configuration/output/#outputchunkfilename). | ||
| */ | ||
| chunkFilename?: Required<Configuration>['output']['chunkFilename']; | ||
| chunkFilename?: Required<Configuration>['output']['chunkFilename'] | undefined; | ||
| /** | ||
@@ -52,3 +52,3 @@ * For projects where CSS ordering has been mitigated through consistent | ||
| */ | ||
| ignoreOrder?: boolean; | ||
| ignoreOrder?: boolean | undefined; | ||
| /** | ||
@@ -66,3 +66,3 @@ * Specify where to insert the link tag. | ||
| */ | ||
| insert?: string | ((linkTag: any) => void); | ||
| insert?: string | ((linkTag: any) => void) | undefined; | ||
| /** | ||
@@ -74,3 +74,3 @@ * Specify additional html attributes to add to the link tag. | ||
| */ | ||
| attributes?: Record<string, string>; | ||
| attributes?: Record<string, string> | undefined; | ||
| /** | ||
@@ -84,3 +84,3 @@ * This option allows loading asynchronous chunks with a custom link type, such as | ||
| */ | ||
| linkType?: string | false | 'text/css'; | ||
| linkType?: string | false | 'text/css' | undefined; | ||
@@ -91,3 +91,3 @@ /** | ||
| */ | ||
| experimentalUseImportModule?: boolean; | ||
| experimentalUseImportModule?: boolean | undefined; | ||
| } | ||
@@ -99,3 +99,3 @@ interface LoaderOptions { | ||
| */ | ||
| publicPath?: string | ((resourcePath: string, context: string) => string); | ||
| publicPath?: string | ((resourcePath: string, context: string) => string) | undefined; | ||
| /** | ||
@@ -105,3 +105,3 @@ * If false, the plugin will extract the CSS but **will not** emit the file | ||
| */ | ||
| emit?: boolean; | ||
| emit?: boolean | undefined; | ||
| /** | ||
@@ -113,3 +113,3 @@ * By default, `mini-css-extract-plugin` generates JS modules that use the ES modules syntax. | ||
| */ | ||
| esModule?: boolean; | ||
| esModule?: boolean | undefined; | ||
@@ -119,3 +119,3 @@ /** | ||
| */ | ||
| layer?: string; | ||
| layer?: string | undefined; | ||
| } | ||
@@ -122,0 +122,0 @@ } |
| { | ||
| "name": "@types/mini-css-extract-plugin", | ||
| "version": "2.0.0", | ||
| "version": "2.0.1", | ||
| "description": "TypeScript definitions for mini-css-extract-plugin", | ||
@@ -47,4 +47,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mini-css-extract-plugin", | ||
| }, | ||
| "typesPublisherContentHash": "33b6cab536586fa879d37a9bfc01f2ad2b683221b12d6d2e2e38e7459b7ad72e", | ||
| "typesPublisherContentHash": "dde356be41b183bed3ddefc42163d260d429f4831c9c198b2723d45ebf1d6d07", | ||
| "typeScriptVersion": "3.7" | ||
| } |
@@ -11,3 +11,3 @@ # Installation | ||
| ### Additional Details | ||
| * Last updated: Wed, 30 Jun 2021 21:01:22 GMT | ||
| * Last updated: Wed, 07 Jul 2021 00:01:40 GMT | ||
| * Dependencies: [@types/webpack](https://npmjs.com/package/@types/webpack), [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
8011
1.68%