12 lines
173 B
TypeScript
12 lines
173 B
TypeScript
|
/// <reference path="user.ts" />
|
||
|
|
||
|
namespace MisskeyEntity {
|
||
|
export type Reaction = {
|
||
|
id: string;
|
||
|
createdAt: string;
|
||
|
user: User;
|
||
|
url?: string;
|
||
|
type: string;
|
||
|
};
|
||
|
}
|