UNPKG

@pnpm/git-fetcher

Version:
11 lines (10 loc) 331 B
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; };