@eaglesong/task-panorama
Version:
Eaglesong task for Panorama
48 lines • 1.64 kB
TypeScript
export = SourceMapDevToolPlugin;
declare class SourceMapDevToolPlugin {
/**
* @param {SourceMapDevToolPluginOptions} [options] options object
* @throws {Error} throws error, if got more than 1 arguments
*/
constructor(options?: any, ...args: any[]);
/** @type {string | false} */
sourceMapFilename: string | false;
/** @type {string | false} */
sourceMappingURLComment: string | false;
/** @type {string | false} */
sourceMapVariableName: string | false;
/** @type {string | Function} */
moduleFilenameTemplate: string | Function;
/** @type {string | Function} */
fallbackModuleFilenameTemplate: string | Function;
/** @type {string} */
namespace: string;
/** @type {SourceMapDevToolPluginOptions} */
options: SourceMapDevToolPluginOptions;
/**
* Apply compiler
* @param {Compiler} compiler compiler instance
* @returns {void}
*/
apply(compiler: any): void;
}
declare namespace SourceMapDevToolPlugin {
export { SourceMapDevToolPluginOptions, Chunk, Source, SourceMap, Module, Compilation, Compiler, SourceMapDefinition, SourceMapTask };
}
type SourceMapDevToolPluginOptions = any;
type Chunk = any;
type Source = import("webpack-sources").Source;
type SourceMap = import("source-map").RawSourceMap;
type Module = any;
type Compilation = any;
type Compiler = any;
type SourceMapDefinition = any;
type SourceMapTask = {
asset: import("webpack-sources").Source;
modules?: any[];
source: string;
file: string;
sourceMap: import("source-map").RawSourceMap;
chunk: any;
};
//# sourceMappingURL=index.d.ts.map