sharkey/packages/megalodon/src/entities/reaction.ts
2023-09-25 01:49:57 +02:00

11 lines
170 B
TypeScript

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