mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
refactor: export NpmResponse interface
This commit is contained in:
parent
7f75e5768b
commit
566f64cea0
1 changed files with 3 additions and 1 deletions
|
@ -42,7 +42,7 @@ export interface NpmDependency extends ReleaseResult {
|
|||
sourceDirectory?: string;
|
||||
}
|
||||
|
||||
interface NpmResponse {
|
||||
export interface NpmResponse {
|
||||
_id: string;
|
||||
name?: string;
|
||||
versions?: Record<
|
||||
|
@ -55,6 +55,8 @@ interface NpmResponse {
|
|||
homepage?: string;
|
||||
deprecated?: boolean;
|
||||
gitHead?: string;
|
||||
dependencies?: Record<string, string>;
|
||||
devDependencies?: Record<string, string>;
|
||||
}
|
||||
>;
|
||||
repository?: {
|
||||
|
|
Loading…
Reference in a new issue