/// import * as webpack from "webpack"; export interface DevMapOptions { name: string; dllEntry: webpack.Entry; isProd: boolean; devPort?: number; } export default class MapPlugin { options: DevMapOptions; constructor(options: DevMapOptions); apply(compiler: any): void; }