react-native-node-api
Version:
Node-API for React Native
13 lines • 579 B
TypeScript
import { LinkModuleOptions, LinkModuleResult } from "./link-modules.js";
type UpdateInfoPlistOptions = {
filePath: string;
oldLibraryName: string;
newLibraryName: string;
};
/**
* Update the Info.plist file of an xcframework to use the new library name.
*/
export declare function updateInfoPlist({ filePath, oldLibraryName, newLibraryName, }: UpdateInfoPlistOptions): Promise<void>;
export declare function linkXcframework({ platform, modulePath, incremental, naming, }: LinkModuleOptions): Promise<LinkModuleResult>;
export {};
//# sourceMappingURL=apple.d.ts.map