Sharkey/packages/megalodon/src/pleroma/entities/reaction.ts
2023-09-24 01:44:53 +02:00

10 lines
179 B
TypeScript

/// <reference path="./account.ts" />
namespace PleromaEntity {
export type Reaction = {
count: number
me: boolean
name: string
accounts?: Array<Account>
}
}