1 | export type Schema = import("schema-utils/declarations/validate").Schema;
|
2 | export type Compiler = import("webpack").Compiler;
|
3 | export type Compilation = import("webpack").Compilation;
|
4 | export type Chunk = import("webpack").Chunk;
|
5 | export type Module = import("webpack").Module;
|
6 | export type Source = import("webpack").sources.Source;
|
7 | export type AssetInfo = import("webpack").AssetInfo;
|
8 | export type NormalModule = import("webpack").NormalModule;
|
9 | export type LoaderOptions = import("./index.js").LoaderOptions;
|
10 | export type Locals = {
|
11 | [key: string]: string | Function;
|
12 | };
|
13 | export type TODO = any;
|
14 | export type Dependency = {
|
15 | identifier: string;
|
16 | context: string | null;
|
17 | content: Buffer;
|
18 | media: string;
|
19 | supports?: string | undefined;
|
20 | layer?: string | undefined;
|
21 | sourceMap?: Buffer | undefined;
|
22 | };
|
23 |
|
24 |
|
25 |
|
26 |
|
27 | export function pitch(
|
28 | this: import("webpack").LoaderContext<MiniCssExtractPlugin.LoaderOptions>,
|
29 | request: string
|
30 | ): void;
|
31 | import MiniCssExtractPlugin = require("./index");
|
32 | declare function _default(): void;
|
33 | export { _default as default };
|