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;
|
sourceDirectory?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface NpmResponse {
|
export interface NpmResponse {
|
||||||
_id: string;
|
_id: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
versions?: Record<
|
versions?: Record<
|
||||||
|
@ -55,6 +55,8 @@ interface NpmResponse {
|
||||||
homepage?: string;
|
homepage?: string;
|
||||||
deprecated?: boolean;
|
deprecated?: boolean;
|
||||||
gitHead?: string;
|
gitHead?: string;
|
||||||
|
dependencies?: Record<string, string>;
|
||||||
|
devDependencies?: Record<string, string>;
|
||||||
}
|
}
|
||||||
>;
|
>;
|
||||||
repository?: {
|
repository?: {
|
||||||
|
|
Loading…
Reference in a new issue