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.
8 lines
351 B
8 lines
351 B
import { ExpoConfig, ProjectConfig } from '@expo/config';
|
|
import { ModPlatform } from '@expo/config-plugins';
|
|
export declare function logConfig(config: ExpoConfig | ProjectConfig): void;
|
|
export default function configureManagedProjectAsync({ projectRoot, platforms, }: {
|
|
projectRoot: string;
|
|
platforms: ModPlatform[];
|
|
}): Promise<ExpoConfig>;
|