Skip to content

Commit

Permalink
fix: add missing multipleVersions option in typings
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Sep 3, 2023
1 parent 40f758d commit 1745d11
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,13 @@ interface ThirdPartyOptions {
* }
*/
allow?: ThirdPartyValidator | ThirdPartyAllowOptions;

/**
* Track each dependency version as a different dependency.
* Particularly useful when a dependency changed its licensing between versions.
* Default is `false` far backward compatibility.
*/
multipleVersions?: boolean;
}

export type ThirdParty = ThirdPartyOutputGeneratorFn | ThirdPartyOptions;
Expand Down

0 comments on commit 1745d11

Please sign in to comment.