🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@types/registry-auth-token

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/registry-auth-token - npm Package Compare versions

Comparing version
4.2.1
to
4.2.2
+1
-2
registry-auth-token/index.d.ts

@@ -47,3 +47,3 @@ // Type definitions for Registry Auth Token 4.2

*/
type: 'Basic' | 'Bearer';
type: "Basic" | "Bearer";
/**

@@ -61,3 +61,2 @@ * The username used in `Basic`

/**
*
* @param registryUrl - Either the registry url used

@@ -64,0 +63,0 @@ * for matching or a configuration object describing the contents of the .npmrc file

{
"name": "@types/registry-auth-token",
"version": "4.2.1",
"version": "4.2.2",
"description": "TypeScript definitions for Registry Auth Token",

@@ -33,4 +33,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/registry-auth-token",

"dependencies": {},
"typesPublisherContentHash": "a997e344b96d8b16c5d590134d13e49032e9b12c6f5a159774ae34a42aa61436",
"typeScriptVersion": "3.6"
"typesPublisherContentHash": "9d9ef5ae08042dc1bf2843a179e7a506288b801f11b71de4d2f5d37061c9224b",
"typeScriptVersion": "4.5"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Wed, 07 Jul 2021 18:02:21 GMT
* Last updated: Wed, 27 Sep 2023 07:12:04 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: none

@@ -1,5 +0,5 @@

import { AuthOptions } from './';
import { AuthOptions } from "./";
declare function registryUrl(scope: string, npmrc?: Pick<AuthOptions, 'npmrc'>): string;
declare function registryUrl(scope: string, npmrc?: Pick<AuthOptions, "npmrc">): string;
export = registryUrl;