From 0bd7d27b33c893c3da6334c4110c6144a51fa451 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 1 Sep 2020 06:30:52 +0200
Subject: [PATCH] chore: type -> interface

---
 lib/workers/repository/init/common.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/workers/repository/init/common.ts b/lib/workers/repository/init/common.ts
index 1904f3a36e..b57229f0ef 100644
--- a/lib/workers/repository/init/common.ts
+++ b/lib/workers/repository/init/common.ts
@@ -3,8 +3,8 @@ export type RepoConfigError = {
   validationMessage: string;
 };
 
-export type RepoFileConfig = {
+export interface RepoFileConfig {
   fileName?: string;
   config?: any;
   error?: RepoConfigError;
-};
+}
-- 
GitLab