getTargetsAndBrowsersList.d.ts 254 Bytes
import { IBundlerConfigType, IConfig, ITargets } from '@umijs/types';
interface IOpts {
    config: IConfig;
    type: IBundlerConfigType;
}
export default function ({ config, type }: IOpts): {
    targets: ITargets;
    browserslist: any;
};
export {};