node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { AuthOptions } from './';
/**
* Get the registry URL for a given npm scope. Falls back to global registry if scope is not defined.
*
* @param [scope] - npm scope to resolve URL for. Falls back to global registry if not defined.
* @param [npmrc] - Optional object of npmrc properties to use instead of looking up the users local npmrc file
* @returns The resolved registry URL, falling back to the global npm registry
*/
declare function registryUrl(
scope?: string,
npmrc?: Pick<AuthOptions, 'npmrc'>
): string;
export = registryUrl;