UNPKG

1.14 kBTypeScriptView Raw
1export type Schema = import("schema-utils/declarations/validate").Schema;
2export type Compiler = import("webpack").Compiler;
3export type Compilation = import("webpack").Compilation;
4export type Chunk = import("webpack").Chunk;
5export type Module = import("webpack").Module;
6export type Source = import("webpack").sources.Source;
7export type AssetInfo = import("webpack").AssetInfo;
8export type NormalModule = import("webpack").NormalModule;
9export type LoaderOptions = import("./index.js").LoaderOptions;
10export type Locals = {
11 [key: string]: string | Function;
12};
13export type TODO = any;
14export 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 * @this {import("webpack").LoaderContext<LoaderOptions>}
25 * @param {string} request
26 */
27export function pitch(
28 this: import("webpack").LoaderContext<MiniCssExtractPlugin.LoaderOptions>,
29 request: string
30): void;
31import MiniCssExtractPlugin = require("./index");
32declare function _default(): void;
33export { _default as default };