install-expo-modules 0.3.8 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,7 +4,8 @@ declare type IosDeploymentTargetConfigPlugin = ConfigPlugin<{
|
|
|
4
4
|
deploymentTarget: string;
|
|
5
5
|
}>;
|
|
6
6
|
export declare const withIosDeploymentTarget: IosDeploymentTargetConfigPlugin;
|
|
7
|
-
export declare function updateDeploymentTargetPodfile(contents: string, deploymentTarget: string): string
|
|
7
|
+
export declare function updateDeploymentTargetPodfile(projectRoot: string, contents: string, deploymentTarget: string): Promise<string>;
|
|
8
8
|
export declare function shouldUpdateDeployTargetPodfileAsync(projectRoot: string, targetVersion: string): Promise<boolean>;
|
|
9
|
+
export declare function lookupReactNativeMinIosVersionSupported(projectRoot: string): Promise<string | null>;
|
|
9
10
|
export declare function updateDeploymentTargetXcodeProject(project: XCParseXcodeProject, deploymentTarget: string): XCParseXcodeProject;
|
|
10
11
|
export {};
|