2023-06-24 06:13:03 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
2023-07-03 00:18:30 +02:00
|
|
|
[Home](./index.md) > [firefish-js](./firefish-js.md) > [entities](./firefish-js.entities.md) > [Notification](./firefish-js.entities.notification.md)
|
2023-06-24 06:13:03 +02:00
|
|
|
|
|
|
|
## entities.Notification type
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare type Notification = {
|
|
|
|
id: ID;
|
|
|
|
createdAt: DateString;
|
|
|
|
isRead: boolean;
|
|
|
|
} & (
|
|
|
|
| {
|
|
|
|
type: "reaction";
|
|
|
|
reaction: string;
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "reply";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "renote";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "quote";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "mention";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "pollVote";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
note: Note;
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "follow";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "followRequestAccepted";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "receiveFollowRequest";
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "groupInvited";
|
|
|
|
invitation: UserGroup;
|
|
|
|
user: User;
|
|
|
|
userId: User["id"];
|
|
|
|
}
|
|
|
|
| {
|
|
|
|
type: "app";
|
|
|
|
header?: string | null;
|
|
|
|
body: string;
|
|
|
|
icon?: string | null;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
```
|
2023-07-03 00:18:30 +02:00
|
|
|
**References:** [ID](./firefish-js.entities.id.md)<!-- -->, [DateString](./firefish-js.entities.datestring.md)<!-- -->, [User](./firefish-js.entities.user.md)<!-- -->, [Note](./firefish-js.entities.note.md)<!-- -->, [UserGroup](./firefish-js.entities.usergroup.md)
|
2023-06-24 06:13:03 +02:00
|
|
|
|