From 0aa6d848fa27a975bfe4a6dcc563ee38de41a367 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Wed, 8 Feb 2017 23:52:14 +0900
Subject: [PATCH] Refactor: Clean up

---
 src/config.ts | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/config.ts b/src/config.ts
index 852a59d27a..54ed0826a4 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -23,7 +23,7 @@ export const path = (global as any).MISSKEY_CONFIG_PATH
 /**
  * ユーザーが設定する必要のある情報
  */
-interface ISource {
+interface Source {
 	maintainer: string;
 	url: string;
 	secondary_url: string;
@@ -83,12 +83,10 @@ interface Mixin {
 	drive_url: string;
 }
 
-export type IConfig = ISource & Mixin;
-
 export default function load() {
-	const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as ISource;
+	const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
 
-	const mixin: Mixin = {} as Mixin;
+	const mixin = {} as Mixin;
 
 	// Validate URLs
 	if (!isUrl(config.url)) urlError(config.url);