diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-07-17 15:43:07 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-07-17 15:43:07 +0900 |
| commit | 6d1d7b5366d49237d84360f07482559e97e49f72 (patch) | |
| tree | 1ee274d4f9af2652a839c3938efcd5aa1335d29a /src | |
| parent | Update deps (diff) | |
| download | sharkey-6d1d7b5366d49237d84360f07482559e97e49f72.tar.gz sharkey-6d1d7b5366d49237d84360f07482559e97e49f72.tar.bz2 sharkey-6d1d7b5366d49237d84360f07482559e97e49f72.zip | |
Improve type
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/account.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/account.ts b/src/client/account.ts index 6f06ee0f32..102269a0dc 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'); |