Skip to content

Commit

Permalink
fix: update https
Browse files Browse the repository at this point in the history
  • Loading branch information
@jotadeveloper authored and sergiohgz committed Jul 25, 2019
1 parent b1e780a commit c93c3fc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions core/types/src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,11 @@ declare interface verdaccio$WebConf {
}

declare interface verdaccio$HttpsConf {
key: string;
cert: string;
ca: string;
key?: string;
cert?: string;
ca?: string;
pfx?: string;
passphrase?: string;
}

declare type verdaccio$AuthConf = any | verdaccio$AuthHtpasswd;
Expand Down Expand Up @@ -256,6 +258,7 @@ declare type verdaccio$Config = {
no_proxy?: string;
max_body_size?: string;
notifications: verdaccio$Notifications;
middlewares?: any;
checkSecretKey: (token: string) => string;
hasProxyTo(pkg: string, upLink: string): boolean;
getMatchedPackagesSpec?: (storage: string) => verdaccio$PackageAccess;
Expand Down

0 comments on commit c93c3fc

Please sign in to comment.