We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e780a commit c93c3fcCopy full SHA for c93c3fc
core/types/src/types.js
@@ -199,9 +199,11 @@ declare interface verdaccio$WebConf {
199
}
200
201
declare interface verdaccio$HttpsConf {
202
- key: string;
203
- cert: string;
204
- ca: string;
+ key?: string;
+ cert?: string;
+ ca?: string;
205
+ pfx?: string;
206
+ passphrase?: string;
207
208
209
declare type verdaccio$AuthConf = any | verdaccio$AuthHtpasswd;
@@ -256,6 +258,7 @@ declare type verdaccio$Config = {
256
258
no_proxy?: string;
257
259
max_body_size?: string;
260
notifications: verdaccio$Notifications;
261
+ middlewares?: any;
262
checkSecretKey: (token: string) => string;
263
hasProxyTo(pkg: string, upLink: string): boolean;
264
getMatchedPackagesSpec?: (storage: string) => verdaccio$PackageAccess;
0 commit comments