UNPKG

421 BTypeScriptView Raw
1import { Configuration } from 'webpack';
2import { Arguments, DevConfiguration, InputEnvironment } from './types';
3/**
4 * Create the official Webpack config for loading Expo web apps.
5 *
6 * @param env Environment props used to configure features.
7 * @param argv
8 * @category default
9 */
10export default function createWebpackConfigAsync(env?: InputEnvironment, argv?: Arguments): Promise<Configuration | DevConfiguration>;