Skip to content

Commit

Permalink
chore: reorder ReleaseResult fields
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 18, 2021
1 parent bbd78d4 commit 15f4afc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/datasource/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,16 @@ export interface Release {
}

export interface ReleaseResult {
sourceDirectory?: string;
deprecationMessage?: string;
isPrivate?: boolean;
releases: Release[];
tags?: Record<string, string>;
// URL metadata
changelogUrl?: string;
dependencyUrl?: string;
deprecationMessage?: string;
homepage?: string;
releases: Release[];
sourceUrl?: string;
tags?: Record<string, string>;
isPrivate?: boolean;
sourceDirectory?: string;
}

export interface DatasourceApi {
Expand Down

0 comments on commit 15f4afc

Please sign in to comment.