appium-xcode
Version:
Interact with Xcode
30 lines (26 loc) • 396 B
JavaScript
// transpile:main
import {
getPath,
getVersion,
getMaxIOSSDK,
getMaxTVOSSDK,
getClangVersion,
} from './xcode';
const xcode = {
getPath,
getVersion,
getMaxIOSSDK,
getMaxTVOSSDK,
getClangVersion
};
export {
getPath,
getVersion,
getMaxIOSSDK,
getMaxTVOSSDK,
getClangVersion
};
export default xcode;
/**
* @typedef {import('./xcode').XcodeVersion} XcodeVersion
*/