From 077a3fd311ba0fc0f7e415e4e7e4dfa251c17a68 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Sat, 19 Feb 2022 14:28:08 +0900
Subject: [PATCH] refactor: fix type

---
 packages/backend/src/daemons/server-stats.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/packages/backend/src/daemons/server-stats.ts b/packages/backend/src/daemons/server-stats.ts
index 47c46042e..115e88f15 100644
--- a/packages/backend/src/daemons/server-stats.ts
+++ b/packages/backend/src/daemons/server-stats.ts
@@ -36,8 +36,8 @@ export default function() {
 				tx: round(Math.max(0, netStats.tx_sec)),
 			},
 			fs: {
-				r: round(Math.max(0, fsStats.rIO_sec)),
-				w: round(Math.max(0, fsStats.wIO_sec)),
+				r: round(Math.max(0, fsStats.rIO_sec ?? 0)),
+				w: round(Math.max(0, fsStats.wIO_sec ?? 0)),
 			},
 		};
 		ev.emit('serverStats', stats);
@@ -51,9 +51,9 @@ export default function() {
 }
 
 // CPU STAT
-function cpuUsage() {
+function cpuUsage(): Promise<number> {
 	return new Promise((res, rej) => {
-		osUtils.cpuUsage((cpuUsage: number) => {
+		osUtils.cpuUsage((cpuUsage) => {
 			res(cpuUsage);
 		});
 	});