diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-12-02 20:10:56 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-02 20:10:56 +0900 |
| commit | b451c047872db06ff0de655bd24625dbdb80486c (patch) | |
| tree | 23449abaf6a8ea6a07cce20679c5e936f66e2d34 /src/models/notification.ts | |
| parent | Simplify expressions (#3473) (diff) | |
| download | sharkey-b451c047872db06ff0de655bd24625dbdb80486c.tar.gz sharkey-b451c047872db06ff0de655bd24625dbdb80486c.tar.bz2 sharkey-b451c047872db06ff0de655bd24625dbdb80486c.zip | |
Use primitive type boolean (#3474)
Diffstat (limited to 'src/models/notification.ts')
| -rw-r--r-- | src/models/notification.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/notification.ts b/src/models/notification.ts index 394e49f36a..5cf1e140c8 100644 --- a/src/models/notification.ts +++ b/src/models/notification.ts @@ -48,7 +48,7 @@ export interface INotification { /** * 通知が読まれたかどうか */ - isRead: Boolean; + isRead: boolean; } export const packMany = ( |