GT2/Ejectable/node_modules/@expo/configure-splash-screen/build/ios/Paths.d.ts

11 lines
400 B
TypeScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
import { XcodeProject } from 'xcode';
export declare function getAllXcodeProjectPaths(projectRoot: string): string[];
export declare function getAllPBXProjectPaths(projectRoot: string): string[];
export declare function getApplicationNativeTarget({ project, projectName, }: {
project: XcodeProject;
projectName: string;
}): {
uuid: string;
target: import("xcode").PBXNativeTarget;
};