From 6d1d7b5366d49237d84360f07482559e97e49f72 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 17 Jul 2021 15:43:07 +0900 Subject: [PATCH] Improve type --- src/client/account.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client/account.ts b/src/client/account.ts index 6f06ee0f3..102269a0d 100644 --- a/src/client/account.ts +++ b/src/client/account.ts @@ -8,6 +8,8 @@ import { unisonReload } from '@client/scripts/unison-reload'; type Account = { id: string; token: string; + isModerator: boolean; + isAdmin: boolean; }; const data = localStorage.getItem('account');