Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

17 lines
886 B
TypeScript

import { DependencyConfig } from '@react-native-community/cli-types';
import { ApplePlatform } from '../types';
interface ResolvePodsOptions {
forceInstall?: boolean;
newArchEnabled?: boolean;
}
interface NativeDependencies {
[key: string]: DependencyConfig;
}
export declare function getPackageJson(root: string): any;
export declare function getPlatformDependencies(dependencies: NativeDependencies, platformName: ApplePlatform): string[];
export declare function dependenciesToString(dependencies: string[]): string;
export declare function generateMd5Hash(text: string): string;
export declare function compareMd5Hashes(hash1: string, hash2: string): boolean;
export default function resolvePods(root: string, nativeDependencies: NativeDependencies, platformName: ApplePlatform, options?: ResolvePodsOptions): Promise<void>;
export {};
//# sourceMappingURL=pods.d.ts.map