3fd2b55406
This reverts commit 89eea5df52
.
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
/// <reference path="account.ts" />
|
|
|
|
namespace Entity {
|
|
export type Reaction = {
|
|
count: number
|
|
me: boolean
|
|
name: string
|
|
accounts?: Array<Account>
|
|
}
|
|
}
|