Skip to content

Commit

Permalink
chore: LegacyAdminConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 7, 2021
1 parent f21b761 commit 78551af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/config/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface RepoAdminConfig {
trustLevel?: 'low' | 'high';
}

export interface RenovateAdminConfig {
export interface LegacyAdminConfig {
cacheDir?: string;

endpoint?: string;
Expand Down Expand Up @@ -140,7 +140,7 @@ export interface CustomManager {

// TODO: Proper typings
export interface RenovateConfig
extends RenovateAdminConfig,
extends LegacyAdminConfig,
RenovateSharedConfig,
UpdateConfig<PackageRule>,
AssigneesAndReviewersConfig,
Expand Down
4 changes: 2 additions & 2 deletions lib/workers/common.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Merge } from 'type-fest';
import {
GroupConfig,
RenovateAdminConfig,
LegacyAdminConfig,
RenovateConfig,
RenovateSharedConfig,
ValidationMessage,
Expand Down Expand Up @@ -100,7 +100,7 @@ export enum ProcessBranchResult {

export interface BranchConfig
extends BranchUpgradeConfig,
RenovateAdminConfig,
LegacyAdminConfig,
PlatformPrOptions {
automergeComment?: string;
automergeType?: string;
Expand Down

0 comments on commit 78551af

Please sign in to comment.