first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { ExternalSource, PodfileLock } from './parsePodfileLock';
export declare function getDependentPods(podfileLock: PodfileLock, { name, version }: {
name: string;
version?: string;
}): string[];
/**
* Find the first "external source" (local file path reference) for a given pod.
*
* @param podfileLock
* @param props.name The pod name to search for.
* @param props.checked A recursive parameter to prevent infinite recursion, not for public use.
* @returns
*/
export declare function getFirstExternalSourceForPod(podfileLock: PodfileLock, { name, checked }: {
name: string;
checked?: string[];
}): {
pod: string;
source: ExternalSource;
} | null;