1
0

implement /api/v1/favourites

This commit is contained in:
Hazelnoot
2025-03-21 23:26:12 -04:00
parent aaf49eadee
commit 3d8930f070
4 changed files with 59 additions and 27 deletions
@@ -1,4 +1,5 @@
/// <reference path="user.ts" />
/// <reference path="note.ts" />
namespace MisskeyEntity {
export type Reaction = {
@@ -7,4 +8,8 @@ namespace MisskeyEntity {
user: User
type: string
}
export type NoteReaction = Reaction & {
note: Note
}
}