UNPKG

946 BTypeScriptView 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 TODO = any;
11export type Dependency = {
12 identifier: string;
13 context: string | null;
14 content: Buffer;
15 media: string;
16 supports?: string | undefined;
17 layer?: string | undefined;
18 sourceMap?: Buffer | undefined;
19};
20/**
21 * @this {import("webpack").LoaderContext<LoaderOptions>}
22 * @param {string} request
23 */
24export function pitch(request: string): void;
25declare function _default(): void;
26export { _default as default };