13 lines
204 B
TypeScript
13 lines
204 B
TypeScript
|
/// <reference path="account.ts" />
|
||
|
|
||
|
namespace Entity {
|
||
|
export type Reaction = {
|
||
|
count: number;
|
||
|
me: boolean;
|
||
|
name: string;
|
||
|
url?: string;
|
||
|
static_url?: string;
|
||
|
accounts?: Array<Account>;
|
||
|
};
|
||
|
}
|