fix: Notificationsの型を修正 #27

Merged
tamaina merged 9 commits from fix-notification into develop 2021-09-20 17:50:36 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit f051eca705 - Show all commits

View file

@ -2277,8 +2277,8 @@ type Notification_2 = {
userId: User['id'];
} | {
type: 'app';
header: string | null;
body?: string | null;
header?: string | null;
body: string;
icon?: string | null;
});

View file

@ -156,8 +156,8 @@ export type Notification = {
userId: User['id'];
} | {
type: 'app';
header: string | null;
body?: string | null;
header?: string | null;
body: string;
icon?: string | null;
});