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.
19 lines
793 B
19 lines
793 B
/**
|
|
* paths returned:
|
|
* iosProjectDirectory - root directory of an (uncompiled) xcworkspace and obj-c source tree
|
|
* projectName - xcworkspace project name normalized from context.config
|
|
* supportingDirectory - location of Info.plist, xib files, etc. during configuration.
|
|
* for an unbuilt app this is underneath iosProjectDirectory. for a compiled app it's just
|
|
* a path to the flat xcarchive.
|
|
* intermediatesDirectory - temporary spot to write whatever files are needed during the
|
|
* detach/build process but can be discarded afterward.
|
|
*/
|
|
declare function getPaths(context: any): {
|
|
projectRootDirectory: any;
|
|
intermediatesDirectory: string;
|
|
iosProjectDirectory: any;
|
|
projectName: any;
|
|
supportingDirectory: any;
|
|
};
|
|
export { getPaths };
|