barkey/packages/megalodon/src/misskey/entities/reaction.ts
2025-03-27 19:51:43 -04:00

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
}
}