frontend/.pnpm-store/v3/files/54/6a0dbf59f404d8244ee5237af66790cc23913b2928e9c009b18692686275558c11fa9fe88e0f204fabffdab6f3b079fb3e8d59ff3eaedd52ff65439076710a

13 lines
442 B
Plaintext

import { AuthOptions } from './';
/**
* Get the registry URL for a given npm scope
*
* @param scope - npm scope to resolve URL for
* @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;