mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-23 09:44:51 +00:00
15 lines
253 B
TypeScript
15 lines
253 B
TypeScript
/// <reference path="user.ts" />
|
|
/// <reference path="note.ts" />
|
|
|
|
namespace MisskeyEntity {
|
|
export type Reaction = {
|
|
id: string
|
|
createdAt: string
|
|
user: User
|
|
type: string
|
|
}
|
|
|
|
export type NoteReaction = Reaction & {
|
|
note: Note
|
|
}
|
|
}
|