We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55eab8e commit bc0fcbcCopy full SHA for bc0fcbc
index.d.ts
@@ -0,0 +1,25 @@
1
+declare module 'extract-css-chunks-webpack-plugin' {
2
+ import { Loader, Plugin } from 'webpack';
3
+
4
+ class ExtractCssChunksPlugin extends Plugin {
5
+ static loader: Loader;
6
7
+ constructor(options?: ExtractCssChunksPlugin.PluginOptions);
8
+ }
9
10
+ namespace ExtractCssChunksPlugin {
11
+ interface PluginOptions {
12
+ /**
13
+ * Options similar to those of `mini-css-extract-plugin`
14
+ */
15
+ filename?: string;
16
+ chunkFilename?: string;
17
18
+ * we try to automatically inject hot reloading, but if it's not working, use this config
19
20
+ hot?: boolean;
21
22
23
24
+ export = ExtractCssChunksPlugin;
25
+}
0 commit comments