Skip to content

Commit

Permalink
fix: deprecated methods are optional
Browse files Browse the repository at this point in the history
  • Loading branch information
@jotadeveloper authored and sergiohgz committed Jul 25, 2019
1 parent 1f66ca9 commit b77155a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/types/src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ declare type verdaccio$PackageAccess = {
publish: Array<string>;
proxy: Array<string>;
access: Array<string>;
allow_access: Array<string>;
allow_publish: Array<string>;
proxy_access: Array<string>;
allow_access?: Array<string>;
allow_publish?: Array<string>;
proxy_access?: Array<string>;
}

declare type verdaccio$PackageList = {
Expand Down

0 comments on commit b77155a

Please sign in to comment.