import { IVLocal } from './types/type'; import { IWebpackOptions } from './types/interface'; interface IInnerWebpackConfig extends IVLocal.WebpackConfig { merge?(options: IWebpackOptions): IVLocal.WebpackConfig; } export default function getProjectWebpackConfig(root: string, options: IWebpackOptions): IInnerWebpackConfig; export {};