/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ /** * Given an array of headers it returns search path so Xcode can resolve * headers when referenced like below: * ``` * #import "CodePush.h" * ``` * If all files are located in one directory (directories.length === 1), * we simply return a relative path to that location. * * Otherwise, we loop through them all to find the outer one that contains * all the headers inside. That location is then returned with /** appended at * the end so Xcode marks that location as `recursive` and will look inside * every folder of it to locate correct headers. */ export default function getHeaderSearchPath(sourceDir: string, headers: Array): string; //# sourceMappingURL=getHeaderSearchPath.d.ts.map