Skip to content

Commit

Permalink
docs(modules/manager): Add JSDoc to PackageDependency interface (#27750)
Browse files Browse the repository at this point in the history
  • Loading branch information
not7cd committed Mar 6, 2024
1 parent b56e545 commit d13b86a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/modules/manager/types.ts
Expand Up @@ -100,6 +100,10 @@ export interface LookupUpdate {
registryUrl?: string;
}

/**
* @property {string} depName - Display name of the package. See #16012
* @property {string} packageName - The name of the package, used in comparisons. depName is used as fallback if this is not set. See #16012
*/
export interface PackageDependency<T = Record<string, any>>
extends ManagerData<T> {
currentValue?: string | null;
Expand Down

0 comments on commit d13b86a

Please sign in to comment.