UNPKG

get-registry

Version:

Get registry config for current package manager

9 lines (8 loc) 228 B
declare function get({ cwd }?: get.Options): Promise<string | undefined>; declare namespace get { interface Options { cwd?: string; } function sync({ cwd }?: get.Options): string | undefined; } export = get;