UNPKG

1.01 kBTypeScriptView Raw
1import { Configuration } from 'webpack';
2import { Options } from './options';
3export declare const babel: (config: {
4 extends: string | null;
5 plugins: import("@babel/core").PluginItem[] | null;
6 presets: import("@babel/core").PluginItem[] | null;
7}, options: Options) => {
8 extends: string | null;
9 plugins: import("@babel/core").PluginItem[] | null;
10 presets: import("@babel/core").PluginItem[] | null;
11};
12export declare const managerBabel: (config: {
13 extends: string | null;
14 plugins: import("@babel/core").PluginItem[] | null;
15 presets: import("@babel/core").PluginItem[] | null;
16}, options: Options) => {
17 extends: string | null;
18 plugins: import("@babel/core").PluginItem[] | null;
19 presets: import("@babel/core").PluginItem[] | null;
20};
21export declare const managerWebpack: (webpackConfig: Configuration | undefined, options: Options) => Configuration;
22export declare const webpack: (webpackConfig: Configuration | undefined, options: Options) => Configuration;