UNPKG

install-expo-modules

Version:

Tools to install expo-modules for existing react-native projects

10 lines (9 loc) 550 B
import { ConfigPlugin, Mod } from '@expo/config-plugins'; import type { BuildSettings, XcodeProject } from 'xcparse'; export type XCParseXcodeProject = Partial<XcodeProject>; export interface BuildSettingsExtended extends BuildSettings { SWIFT_OBJC_BRIDGING_HEADER?: string; } export declare const withXCParseXcodeProjectBaseMod: ConfigPlugin; export declare const withXCParseXcodeProject: ConfigPlugin<Mod<XCParseXcodeProject>>; export declare function getDesignatedSwiftBridgingHeaderFileReference(pbxproj: XCParseXcodeProject): string | null;