getTargetsAndBrowsersList.d.ts 254 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { IBundlerConfigType, IConfig, ITargets } from '@umijs/types'; interface IOpts { config: IConfig; type: IBundlerConfigType; } export default function ({ config, type }: IOpts): { targets: ITargets; browserslist: any; }; export {};