@pnpm/git-fetcher
Version:
A fetcher for git-hosted packages
11 lines (10 loc) • 331 B
TypeScript
import type { GitFetcher } from '@pnpm/fetcher-base';
export interface CreateGitFetcherOptions {
gitShallowHosts?: string[];
rawConfig: Record<string, unknown>;
unsafePerm?: boolean;
ignoreScripts?: boolean;
}
export declare function createGitFetcher(createOpts: CreateGitFetcherOptions): {
git: GitFetcher;
};