UNPKG

@ant-design/tools

Version:
19 lines (18 loc) 498 B
import * as webpack from 'webpack'; import { Configuration } from 'webpack'; declare const svgOptions: { limit: number; minetype: string; }; declare const imageOptions: { limit: number; }; interface GetWebpackConfigFunction { (modules?: boolean): Configuration[]; webpack: typeof webpack; svgRegex: RegExp; svgOptions: typeof svgOptions; imageOptions: typeof imageOptions; } declare const getWebpackConfig: GetWebpackConfigFunction; export default getWebpackConfig;