You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
502 B
13 lines
502 B
import { Platform } from '@expo/config';
|
|
import { BundleOutput } from '@expo/dev-server';
|
|
import { PublishOptions } from '../internal';
|
|
export declare function printBundleSizes(bundles: {
|
|
android?: BundleOutput;
|
|
ios?: BundleOutput;
|
|
}): void;
|
|
export declare function createBundlesAsync(projectRoot: string, publishOptions: PublishOptions | undefined, bundleOptions: {
|
|
platforms: Platform[];
|
|
dev?: boolean;
|
|
useDevServer: boolean;
|
|
}): Promise<Partial<Record<Platform, BundleOutput>>>;
|