Skip to content

Commit

Permalink
refactor: remove unused property (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
ComradeVanti committed Jan 17, 2024
1 parent 46149c9 commit 725fdb9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/registry-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { packageReference } from "./types/package-reference";
import { RegistryUrl } from "./types/registry-url";

export type NpmClient = {
rawClient: RegClient.Instance;
/**
* @throws {NpmClientError}
*/
Expand Down Expand Up @@ -104,8 +103,6 @@ export const getNpmClient = (): NpmClient => {
// create client
const client = new RegClient({ log });
return {
// The instance of raw npm client
rawClient: client,
// Promisified methods
get: normalizeClientFunction(client, client.get),
adduser: normalizeClientFunction(client, client.adduser),
Expand Down

0 comments on commit 725fdb9

Please sign in to comment.