8 lines
301 B
TypeScript
8 lines
301 B
TypeScript
import { getConfig } from '@expo/config';
|
|
import { ModPlatform } from '@expo/config-plugins';
|
|
export declare function getPrebuildConfigAsync(projectRoot: string, props: {
|
|
bundleIdentifier?: string;
|
|
packageName?: string;
|
|
platforms: ModPlatform[];
|
|
}): Promise<ReturnType<typeof getConfig>>;
|